Package de.xima.fc.utils
Interface XIterableUtils.Indexed<T>
- 
- Type Parameters:
 T- Type of the items.
- All Superinterfaces:
 Serializable
- Enclosing class:
 - XIterableUtils
 
public static interface XIterableUtils.Indexed<T> extends Serializable
Represents an item with an index. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetIndex()TgetValue() 
 - 
 
- 
- 
Method Detail
- 
getIndex
int getIndex()
- Returns:
 - The index of the current item
 
 
- 
getValue
T getValue()
- Returns:
 - The value of the current item.
 
 
 - 
 
 -