public enum EObjectRefKind extends Enum<EObjectRefKind>
| Enum Constant and Description |
|---|
CTE |
DERIVED_TABLE |
LATERAL_VIEW |
PIVOT_TABLE |
TABLE |
TABLE_FUNCTION |
TEMP_TABLE |
UNNEST_TABLE |
UNPIVOT_TABLE |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static EObjectRefKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EObjectRefKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EObjectRefKind TABLE
public static final EObjectRefKind VIEW
public static final EObjectRefKind CTE
public static final EObjectRefKind DERIVED_TABLE
public static final EObjectRefKind TEMP_TABLE
public static final EObjectRefKind TABLE_FUNCTION
public static final EObjectRefKind PIVOT_TABLE
public static final EObjectRefKind UNPIVOT_TABLE
public static final EObjectRefKind UNNEST_TABLE
public static final EObjectRefKind LATERAL_VIEW
public static EObjectRefKind[] values()
for (EObjectRefKind c : EObjectRefKind.values()) System.out.println(c);
public static EObjectRefKind 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