Package io.trino.plugin.hive.metastore
Enum SortingColumn.Order
- java.lang.Object
-
- java.lang.Enum<SortingColumn.Order>
-
- io.trino.plugin.hive.metastore.SortingColumn.Order
-
- All Implemented Interfaces:
Serializable,Comparable<SortingColumn.Order>
- Enclosing class:
- SortingColumn
public static enum SortingColumn.Order extends Enum<SortingColumn.Order>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASCENDINGDESCENDING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SortingColumn.OrderfromMetastoreApiOrder(int value, String tablePartitionName)intgetHiveOrder()SortOrdergetSortOrder()static SortingColumn.OrdervalueOf(String name)Returns the enum constant of this type with the specified name.static SortingColumn.Order[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASCENDING
public static final SortingColumn.Order ASCENDING
-
DESCENDING
public static final SortingColumn.Order DESCENDING
-
-
Method Detail
-
values
public static SortingColumn.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 (SortingColumn.Order c : SortingColumn.Order.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SortingColumn.Order valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getSortOrder
public SortOrder getSortOrder()
-
getHiveOrder
public int getHiveOrder()
-
fromMetastoreApiOrder
public static SortingColumn.Order fromMetastoreApiOrder(int value, String tablePartitionName)
-
-