public static enum Blackboard.Get extends java.lang.Enum<Blackboard.Get>
Enum Constant and Description |
---|
AUTO_CREATE
create a new record if it does not exist in record storage.
|
EXISTING
do not create a new record if it does not exists on blackboard or in record storage.
|
NEW
always create a new empty record that will replace an existing version on commit.
|
Modifier and Type | Method and Description |
---|---|
static Blackboard.Get |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Blackboard.Get[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Blackboard.Get EXISTING
public static final Blackboard.Get AUTO_CREATE
public static final Blackboard.Get NEW
public static Blackboard.Get[] values()
for (Blackboard.Get c : Blackboard.Get.values()) System.out.println(c);
public static Blackboard.Get 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 null