public static enum TransformGraph.OperationType extends Enum<TransformGraph.OperationType>
| Enum Constant and Description |
|---|
AGGREGATE |
ARITHMETIC |
ASSIGN |
CASE |
CAST |
CONCAT |
EXPRESSION |
FILTER |
FUNCTION |
JOIN |
LOOKUP |
UNION |
UNKNOWN |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static TransformGraph.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformGraph.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformGraph.OperationType ASSIGN
public static final TransformGraph.OperationType CAST
public static final TransformGraph.OperationType FUNCTION
public static final TransformGraph.OperationType ARITHMETIC
public static final TransformGraph.OperationType CONCAT
public static final TransformGraph.OperationType CASE
public static final TransformGraph.OperationType AGGREGATE
public static final TransformGraph.OperationType JOIN
public static final TransformGraph.OperationType FILTER
public static final TransformGraph.OperationType LOOKUP
public static final TransformGraph.OperationType WINDOW
public static final TransformGraph.OperationType UNION
public static final TransformGraph.OperationType EXPRESSION
public static final TransformGraph.OperationType UNKNOWN
public static TransformGraph.OperationType[] values()
for (TransformGraph.OperationType c : TransformGraph.OperationType.values()) System.out.println(c);
public static TransformGraph.OperationType 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