Package com.arangodb.entity
Enum InvertedIndexPrimarySort.Field.Direction
- java.lang.Object
-
- java.lang.Enum<InvertedIndexPrimarySort.Field.Direction>
-
- com.arangodb.entity.InvertedIndexPrimarySort.Field.Direction
-
- All Implemented Interfaces:
Serializable
,Comparable<InvertedIndexPrimarySort.Field.Direction>
- Enclosing class:
- InvertedIndexPrimarySort.Field
public static enum InvertedIndexPrimarySort.Field.Direction extends Enum<InvertedIndexPrimarySort.Field.Direction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InvertedIndexPrimarySort.Field.Direction
valueOf(String name)
Returns the enum constant of this type with the specified name.static InvertedIndexPrimarySort.Field.Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
asc
public static final InvertedIndexPrimarySort.Field.Direction asc
-
desc
public static final InvertedIndexPrimarySort.Field.Direction desc
-
-
Method Detail
-
values
public static InvertedIndexPrimarySort.Field.Direction[] 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 (InvertedIndexPrimarySort.Field.Direction c : InvertedIndexPrimarySort.Field.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InvertedIndexPrimarySort.Field.Direction 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
-
-