public static enum TableId.Type extends java.lang.Enum<TableId.Type>
| Enum Constant and Description |
|---|
INDEX
Signifies that the table identifier corresponds to the position of the table in the pipeline.
|
PIPELINE_INDEPENDENT
Signifies that the table identifier is pipeline-independent.
|
| Modifier and Type | Method and Description |
|---|---|
static TableId.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableId.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableId.Type INDEX
public static final TableId.Type PIPELINE_INDEPENDENT
public static TableId.Type[] values()
for (TableId.Type c : TableId.Type.values()) System.out.println(c);
public static TableId.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null