Package elki.database.ids.integer
Class ArrayStaticIntegerDBIDs.Itr
- java.lang.Object
-
- elki.database.ids.integer.ArrayStaticIntegerDBIDs.Itr
-
- All Implemented Interfaces:
DBIDArrayIter,DBIDIter,DBIDRef,IntegerDBIDArrayIter,IntegerDBIDIter,IntegerDBIDRef,ArrayIter,Iter
- Enclosing class:
- ArrayStaticIntegerDBIDs
protected class ArrayStaticIntegerDBIDs.Itr extends java.lang.Object implements IntegerDBIDArrayIter
DBID iterator in ELKI/C style.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intposPosition within array.
-
Constructor Summary
Constructors Modifier Constructor Description protectedItr()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayStaticIntegerDBIDs.Itradvance()Moves the iterator forward to the next entry.ArrayStaticIntegerDBIDs.Itradvance(int count)Moves the iterator forward or backward by the given offset.booleanequals(java.lang.Object other)WARNING: calling equality on a reference may be an indicator of incorrect usage, as it is not clear whether the programmer meant the references to be the same or the DBIDs.intgetOffset()Get current iterator offset.intinternalGetIndex()Return the integer value of the object ID.ArrayStaticIntegerDBIDs.Itrretract()Moves the iterator backward to the previous entry.ArrayStaticIntegerDBIDs.Itrseek(int off)Moves the iterator to the given positionjava.lang.StringtoString()booleanvalid()Returns true if the iterator currently points to a valid object.
-
-
-
Method Detail
-
valid
public boolean valid()
Description copied from interface:IterReturns true if the iterator currently points to a valid object.
-
advance
public ArrayStaticIntegerDBIDs.Itr advance()
Description copied from interface:IterMoves the iterator forward to the next entry.
-
advance
public ArrayStaticIntegerDBIDs.Itr advance(int count)
Description copied from interface:ArrayIterMoves the iterator forward or backward by the given offset.- Specified by:
advancein interfaceArrayIter- Specified by:
advancein interfaceDBIDArrayIter- Parameters:
count- offset to move forward or backwards- Returns:
- Iterator
-
retract
public ArrayStaticIntegerDBIDs.Itr retract()
Description copied from interface:ArrayIterMoves the iterator backward to the previous entry.- Specified by:
retractin interfaceArrayIter- Specified by:
retractin interfaceDBIDArrayIter- Returns:
- Iterator
-
seek
public ArrayStaticIntegerDBIDs.Itr seek(int off)
Description copied from interface:ArrayIterMoves the iterator to the given position- Specified by:
seekin interfaceArrayIter- Specified by:
seekin interfaceDBIDArrayIter- Parameters:
off- Seek offset- Returns:
- Iterator
-
getOffset
public int getOffset()
Description copied from interface:ArrayIterGet current iterator offset.
-
internalGetIndex
public int internalGetIndex()
Description copied from interface:IntegerDBIDRefReturn the integer value of the object ID.- Specified by:
internalGetIndexin interfaceDBIDRef- Specified by:
internalGetIndexin interfaceIntegerDBIDRef- Returns:
- integer id
-
equals
public boolean equals(java.lang.Object other)
Description copied from interface:DBIDRefWARNING: calling equality on a reference may be an indicator of incorrect usage, as it is not clear whether the programmer meant the references to be the same or the DBIDs.Use
DBIDUtil.equal(elki.database.ids.DBIDRef, elki.database.ids.DBIDRef)orDBIDUtil.compare(elki.database.ids.DBIDRef, elki.database.ids.DBIDRef)!
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-