public enum LargeObjectAccessMode extends Enum<LargeObjectAccessMode>
| Enum Constant and Description | 
|---|
MODE_READONLY  | 
MODE_READWRITE  | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getCode()  | 
static LargeObjectAccessMode | 
valueOf(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(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 int getCode()