public enum StreamMode extends java.lang.Enum<StreamMode>
Enum Constant | Description |
---|---|
Read |
Stream read mode without acquiring reader lock.
|
ReadWithoutLock |
Stream read mode by acquiring reader lock.
|
Write |
Stream mode for writing/updating the stream.
|
Modifier and Type | Method | Description |
---|---|---|
static StreamMode |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static StreamMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static StreamMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamMode Read
public static final StreamMode ReadWithoutLock
public static final StreamMode Write
public static StreamMode[] values()
for (StreamMode c : StreamMode.values()) System.out.println(c);
public static StreamMode 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 static StreamMode forValue(int value)
value
- enum constant indexpublic int getValue()