public enum ModifyChildrenResult extends Enum<ModifyChildrenResult>
ChartNode
relations modification attempts.Enum Constant and Description |
---|
ACCEPT
The modification attempt has been accepted.
|
CANCEL
The modification attempt was canceled.
|
REFUSE
The modification attempt was refused.
|
Modifier and Type | Method and Description |
---|---|
static ModifyChildrenResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifyChildrenResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifyChildrenResult ACCEPT
public static final ModifyChildrenResult CANCEL
public static final ModifyChildrenResult REFUSE
public static ModifyChildrenResult[] values()
for (ModifyChildrenResult c : ModifyChildrenResult.values()) System.out.println(c);
public static ModifyChildrenResult 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 null