public static enum TableMetadata.Order extends Enum<TableMetadata.Order>
 This is used by TableMetadata.getClusteringOrder() to indicate the clustering
 order of a table.
| Modifier and Type | Method and Description | 
|---|---|
static TableMetadata.Order | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TableMetadata.Order[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TableMetadata.Order ASC
public static final TableMetadata.Order DESC
public static TableMetadata.Order[] values()
for (TableMetadata.Order c : TableMetadata.Order.values()) System.out.println(c);
public static TableMetadata.Order 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 © 2014. All Rights Reserved.