public static enum TransformGraph.NodeKind extends Enum<TransformGraph.NodeKind>
| Enum Constant and Description |
|---|
CONSTANT |
CTE_COLUMN |
DERIVED_COLUMN |
EXPRESSION |
PARAMETER |
PHYSICAL_COLUMN |
TEMP_COLUMN |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static TransformGraph.NodeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformGraph.NodeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformGraph.NodeKind PHYSICAL_COLUMN
public static final TransformGraph.NodeKind CTE_COLUMN
public static final TransformGraph.NodeKind DERIVED_COLUMN
public static final TransformGraph.NodeKind TEMP_COLUMN
public static final TransformGraph.NodeKind EXPRESSION
public static final TransformGraph.NodeKind CONSTANT
public static final TransformGraph.NodeKind PARAMETER
public static final TransformGraph.NodeKind UNKNOWN
public static TransformGraph.NodeKind[] values()
for (TransformGraph.NodeKind c : TransformGraph.NodeKind.values()) System.out.println(c);
public static TransformGraph.NodeKind 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