public static enum RexNode.RexKind extends Enum<RexNode.RexKind>
| Enum Constant and Description |
|---|
CALL |
CAST |
COLUMN_REF |
LITERAL |
PARAM_REF |
SUBQUERY |
WILDCARD |
| Modifier and Type | Method and Description |
|---|---|
static RexNode.RexKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RexNode.RexKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RexNode.RexKind COLUMN_REF
public static final RexNode.RexKind LITERAL
public static final RexNode.RexKind CALL
public static final RexNode.RexKind PARAM_REF
public static final RexNode.RexKind SUBQUERY
public static final RexNode.RexKind WILDCARD
public static final RexNode.RexKind CAST
public static RexNode.RexKind[] values()
for (RexNode.RexKind c : RexNode.RexKind.values()) System.out.println(c);
public static RexNode.RexKind 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 null