public static enum CsmConditional.Condition extends java.lang.Enum<CsmConditional.Condition>
Enum Constant and Description |
---|
FLAG |
IS_EMPTY |
IS_NOT_EMPTY |
IS_PRESENT |
Modifier and Type | Method and Description |
---|---|
(package private) boolean |
evaluate(Node node,
ObservableProperty property) |
static CsmConditional.Condition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CsmConditional.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsmConditional.Condition IS_EMPTY
public static final CsmConditional.Condition IS_NOT_EMPTY
public static final CsmConditional.Condition IS_PRESENT
public static final CsmConditional.Condition FLAG
public static CsmConditional.Condition[] values()
for (CsmConditional.Condition c : CsmConditional.Condition.values()) System.out.println(c);
public static CsmConditional.Condition 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 nullboolean evaluate(Node node, ObservableProperty property)