public static enum Context.Mode extends Enum<Context.Mode>
| Enum Constant and Description |
|---|
BATCH_EDIT |
READ_ONLY |
READ_WRITE |
| Modifier and Type | Method and Description |
|---|---|
static Context.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Context.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Context.Mode READ_ONLY
public static final Context.Mode READ_WRITE
public static final Context.Mode BATCH_EDIT
public static Context.Mode[] values()
for (Context.Mode c : Context.Mode.values()) System.out.println(c);
public static Context.Mode 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 nullCopyright © 2017 DuraSpace. All rights reserved.