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 void
add(T t)
boolean
hasNext()
boolean
hasPrevious()
T
next()
int
nextIndex()
T
previous()
int
previousIndex()
void
remove()
void
set(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:
hasPrevious
in interfaceListIterator<T>
-
previous
public T previous()
- Specified by:
previous
in interfaceListIterator<T>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator<T>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator<T>
-
remove
public void remove()
-
set
public void set(T t)
- Specified by:
set
in interfaceListIterator<T>
-
add
public void add(T t)
- Specified by:
add
in interfaceListIterator<T>
-
-