public static enum ScanSchemaTracker.ProjectionType extends Enum<ScanSchemaTracker.ProjectionType>
Enum Constant and Description |
---|
ALL
This a wildcard projection.
|
NONE
This is an empty projection, such as for a COUNT(*) query.
|
SOME
Explicit projection with a defined set of columns.
|
Modifier and Type | Method and Description |
---|---|
static ScanSchemaTracker.ProjectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanSchemaTracker.ProjectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanSchemaTracker.ProjectionType ALL
public static final ScanSchemaTracker.ProjectionType NONE
public static final ScanSchemaTracker.ProjectionType SOME
public static ScanSchemaTracker.ProjectionType[] values()
for (ScanSchemaTracker.ProjectionType c : ScanSchemaTracker.ProjectionType.values()) System.out.println(c);
public static ScanSchemaTracker.ProjectionType 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 nullCopyright © 1970 The Apache Software Foundation. All rights reserved.