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