public enum ExpressionWrapperType extends Enum<ExpressionWrapperType>
| Enum Constant and Description |
|---|
CONDITION_AND_REPLACE_COLUMN_EXPRESSION |
CONDITION_COLUMN_EXPRESSION |
EXPRESSION_NULL |
REPLACE_COLUMN_EXPRESSION |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionWrapperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionWrapperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionWrapperType CONDITION_AND_REPLACE_COLUMN_EXPRESSION
public static final ExpressionWrapperType CONDITION_COLUMN_EXPRESSION
public static final ExpressionWrapperType REPLACE_COLUMN_EXPRESSION
public static final ExpressionWrapperType EXPRESSION_NULL
public static ExpressionWrapperType[] values()
for (ExpressionWrapperType c : ExpressionWrapperType.values()) System.out.println(c);
public static ExpressionWrapperType 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 © 2017. All Rights Reserved.