Top Fields Constructors Methods
org.python.core

pack-priv Class StringSubsequenceIterator

Located in compilation unit of org.python.core.codecs.

extends Object
implements Iterator
Class Inheritance
All Implemented Interfaces
java.util.Iterator

Field Summary

Modifier and TypeField and Description
private int
private int
k

private final String
s

private int
private int
private int

Constructor Summary

AccessConstructor and Description
pack-priv
StringSubsequenceIterator(String s, int start, int stop, int step)

pack-priv

Method Summary

Modifier and TypeMethod and Description
private static int
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public Object
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.

private int
public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

currentback to summary
private int current
kback to summary
private int k
sback to summary
private final String s
startback to summary
private int start
stepback to summary
private int step
stopback to summary
private int stop

Constructor Detail

StringSubsequenceIteratorback to summary
pack-priv StringSubsequenceIterator(String s, int start, int stop, int step)
StringSubsequenceIteratorback to summary
pack-priv StringSubsequenceIterator(String s)

Method Detail

getCodePointCountback to summary
private static int getCodePointCount(String s)
hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

Annotations
@Override

nextback to summary
public Object next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:Object

the next element in the iteration

Annotations
@Override

nextCodePointback to summary
private int nextCodePoint()
removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.

Annotations
@Override