public static enum Expressionator.Type extends Enum<Expressionator.Type>
| Enum Constant and Description |
|---|
DEFAULT_VALUE |
EXPRESSION |
FIELD_VALIDATOR |
RECORD_VALIDATOR |
| Modifier and Type | Method and Description |
|---|---|
static Expressionator.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expressionator.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expressionator.Type DEFAULT_VALUE
public static final Expressionator.Type EXPRESSION
public static final Expressionator.Type FIELD_VALIDATOR
public static final Expressionator.Type RECORD_VALIDATOR
public static Expressionator.Type[] values()
for (Expressionator.Type c : Expressionator.Type.values()) System.out.println(c);
public static Expressionator.Type 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 © 2005–2023 OpenHMS. All rights reserved.