public static enum SpecialFormExpression.Form extends Enum<SpecialFormExpression.Form>
| Enum Constant and Description |
|---|
AND |
BIND |
COALESCE |
DEREFERENCE |
IF |
IN |
IS_NULL |
NULL_IF |
OR |
ROW_CONSTRUCTOR |
SWITCH |
WHEN |
| Modifier and Type | Method and Description |
|---|---|
static SpecialFormExpression.Form |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialFormExpression.Form[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialFormExpression.Form IF
public static final SpecialFormExpression.Form NULL_IF
public static final SpecialFormExpression.Form SWITCH
public static final SpecialFormExpression.Form WHEN
public static final SpecialFormExpression.Form IS_NULL
public static final SpecialFormExpression.Form COALESCE
public static final SpecialFormExpression.Form IN
public static final SpecialFormExpression.Form AND
public static final SpecialFormExpression.Form OR
public static final SpecialFormExpression.Form DEREFERENCE
public static final SpecialFormExpression.Form ROW_CONSTRUCTOR
public static final SpecialFormExpression.Form BIND
public static SpecialFormExpression.Form[] values()
for (SpecialFormExpression.Form c : SpecialFormExpression.Form.values()) System.out.println(c);
public static SpecialFormExpression.Form 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 © 2012–2022. All rights reserved.