public static enum PipelinedSourceRef.SourceKind extends Enum<PipelinedSourceRef.SourceKind>
| Enum Constant and Description |
|---|
BASE_TABLE |
CONST |
CTE |
SUBQUERY |
UNRESOLVED |
| Modifier and Type | Method and Description |
|---|---|
static PipelinedSourceRef.SourceKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelinedSourceRef.SourceKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelinedSourceRef.SourceKind BASE_TABLE
public static final PipelinedSourceRef.SourceKind CTE
public static final PipelinedSourceRef.SourceKind SUBQUERY
public static final PipelinedSourceRef.SourceKind CONST
public static final PipelinedSourceRef.SourceKind UNRESOLVED
public static PipelinedSourceRef.SourceKind[] values()
for (PipelinedSourceRef.SourceKind c : PipelinedSourceRef.SourceKind.values()) System.out.println(c);
public static PipelinedSourceRef.SourceKind 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