|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<N08_Part2_DataStructureAccess.Mode>
N08_Part2_DataStructureAccess.Mode
protected static enum N08_Part2_DataStructureAccess.Mode
Enum of all the supported data structure access pattern modes.
This enum is multithread safe: it is stateless (except for the enumeration of values, which are immutable).
Like all java enums, this enum is Comparable and Serializable.
Enum Constant Summary | |
---|---|
random
|
|
sequential
|
Method Summary | |
---|---|
protected static N08_Part2_DataStructureAccess.Mode |
parse(String s)
|
static N08_Part2_DataStructureAccess.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static N08_Part2_DataStructureAccess.Mode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final N08_Part2_DataStructureAccess.Mode sequential
public static final N08_Part2_DataStructureAccess.Mode random
Method Detail |
---|
public static N08_Part2_DataStructureAccess.Mode[] values()
for (N08_Part2_DataStructureAccess.Mode c : N08_Part2_DataStructureAccess.Mode.values()) System.out.println(c);
public static N08_Part2_DataStructureAccess.Mode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullprotected static N08_Part2_DataStructureAccess.Mode parse(String s) throws IllegalArgumentException
IllegalArgumentException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |