public static enum PropertyAction.ChildAction extends java.lang.Enum<PropertyAction.ChildAction>
| Enum Constant and Description | 
|---|
ADD
Whether a new child can be added to the owning object. 
 | 
MODIFY
Whether an existing child can be modified on the owning object. 
 | 
REMOVE
Whether an existing child can be removed from the owning object. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PropertyAction.ChildAction | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PropertyAction.ChildAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PropertyAction.ChildAction ADD
public static final PropertyAction.ChildAction REMOVE
public static final PropertyAction.ChildAction MODIFY
public static PropertyAction.ChildAction[] values()
for (PropertyAction.ChildAction c : PropertyAction.ChildAction.values()) System.out.println(c);
public static PropertyAction.ChildAction 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