Package org.cakelab.blender.io.block
Class BlockList.BlockListIterator
- java.lang.Object
-
- org.cakelab.blender.io.block.BlockList.BlockListIterator
-
-
Constructor Summary
Constructors Constructor Description BlockListIterator(BlockList list)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Block e)
boolean
hasNext()
boolean
hasPrevious()
Block
next()
int
nextIndex()
Block
previous()
int
previousIndex()
void
remove()
void
set(Block e)
-
-
-
Constructor Detail
-
BlockListIterator
public BlockListIterator(BlockList list)
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public Block next()
-
remove
public void remove()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<Block>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<Block>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<Block>
-
-