Package org.apache.bookkeeper.metastore
Enum MetastoreScannableTable.Order
- java.lang.Object
- 
- java.lang.Enum<MetastoreScannableTable.Order>
- 
- org.apache.bookkeeper.metastore.MetastoreScannableTable.Order
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<MetastoreScannableTable.Order>
 - Enclosing interface:
- MetastoreScannableTable
 
 public static enum MetastoreScannableTable.Order extends java.lang.Enum<MetastoreScannableTable.Order> The order to loop over a table.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static MetastoreScannableTable.OrdervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MetastoreScannableTable.Order[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ASCpublic static final MetastoreScannableTable.Order ASC 
 - 
DESCpublic static final MetastoreScannableTable.Order DESC 
 
- 
 - 
Method Detail- 
valuespublic static MetastoreScannableTable.Order[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MetastoreScannableTable.Order c : MetastoreScannableTable.Order.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MetastoreScannableTable.Order valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-