public enum IteratorCategory extends java.lang.Enum<IteratorCategory>
| Enum Constant and Description |
|---|
BidIter
Bidirectional iterator.
|
FwdIter
Forward iterator.
|
InpIter
Input iterator.
|
OutIter
Output iterator.
|
RanIter
Random iterator.
|
| Modifier and Type | Method and Description |
|---|---|
static IteratorCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IteratorCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IteratorCategory InpIter
public static final IteratorCategory OutIter
public static final IteratorCategory FwdIter
public static final IteratorCategory BidIter
public static final IteratorCategory RanIter
public static IteratorCategory[] values()
for (IteratorCategory c : IteratorCategory.values()) System.out.println(c);
public static IteratorCategory valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright© 2012 Progeneric Systems, Inc. All Rights Reserved.