public enum EShredderInsert extends Enum<EShredderInsert>
Enum Constant and Description |
---|
ADDASFIRSTCHILD
Subtree should be added as first child of the current node.
|
ADDASRIGHTSIBLING
Subtree should be added as a right sibling of the current node.
|
Modifier and Type | Method and Description |
---|---|
static EShredderInsert |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EShredderInsert[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EShredderInsert ADDASFIRSTCHILD
public static final EShredderInsert ADDASRIGHTSIBLING
IWriteTransaction
is on root node.public static EShredderInsert[] values()
for (EShredderInsert c : EShredderInsert.values()) System.out.println(c);
public static EShredderInsert 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 © 2013. All Rights Reserved.