Class SingletonIterator<T>
- java.lang.Object
-
- org.optaplanner.core.impl.heuristic.selector.common.iterator.SingletonIterator<T>
-
- All Implemented Interfaces:
Iterator<T>,ListIterator<T>
public class SingletonIterator<T> extends Object implements ListIterator<T>
-
-
Constructor Summary
Constructors Constructor Description SingletonIterator(T singleton)SingletonIterator(T singleton, int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(T t)booleanhasNext()booleanhasPrevious()Tnext()intnextIndex()Tprevious()intpreviousIndex()voidremove()voidset(T t)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public T next()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<T>
-
previous
public T previous()
- Specified by:
previousin interfaceListIterator<T>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<T>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<T>
-
remove
public void remove()
-
set
public void set(T t)
- Specified by:
setin interfaceListIterator<T>
-
add
public void add(T t)
- Specified by:
addin interfaceListIterator<T>
-
-