public enum RandomAccessMode extends java.lang.Enum<RandomAccessMode>
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getModeString() |
|
boolean |
requestRead() |
|
boolean |
requestWrite() |
|
static RandomAccessMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static RandomAccessMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomAccessMode READ
public static final RandomAccessMode READWRITE
public static RandomAccessMode[] values()
for (RandomAccessMode c : RandomAccessMode.values()) System.out.println(c);
public static RandomAccessMode 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 nullpublic boolean requestRead()
public boolean requestWrite()
public java.lang.String getModeString()