public enum LineageRole extends Enum<LineageRole>
Edge.role.
Internal API: not part of the public gsqlparser surface.
| Enum Constant and Description |
|---|
AGGREGATE |
CONDITION |
DERIVED |
DIRECT |
FILTER |
JOIN |
LOOKUP |
TRANSFORM |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static LineageRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineageRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineageRole DIRECT
public static final LineageRole TRANSFORM
public static final LineageRole FILTER
public static final LineageRole JOIN
public static final LineageRole AGGREGATE
public static final LineageRole DERIVED
public static final LineageRole CONDITION
public static final LineageRole LOOKUP
public static final LineageRole UNKNOWN
public static LineageRole[] values()
for (LineageRole c : LineageRole.values()) System.out.println(c);
public static LineageRole 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