public enum LargeObjectAccessMode extends java.lang.Enum<LargeObjectAccessMode>
| Enum Constant and Description |
|---|
MODE_READONLY |
MODE_READWRITE |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static LargeObjectAccessMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LargeObjectAccessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LargeObjectAccessMode MODE_READONLY
public static final LargeObjectAccessMode MODE_READWRITE
public static LargeObjectAccessMode[] values()
for (LargeObjectAccessMode c : LargeObjectAccessMode.values()) System.out.println(c);
public static LargeObjectAccessMode 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 int getCode()