public enum RandomAccessMode extends Enum<RandomAccessMode>
Modifier and Type | Method and Description |
---|---|
String |
getModeString() |
boolean |
requestRead() |
boolean |
requestWrite() |
static RandomAccessMode |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean requestRead()
public boolean requestWrite()
public String getModeString()
Copyright © 2002–2020 The Apache Software Foundation. All rights reserved.