Package com.google.appengine.api.search
Enum SortExpression.SortDirection
java.lang.Object
java.lang.Enum<SortExpression.SortDirection>
com.google.appengine.api.search.SortExpression.SortDirection
- All Implemented Interfaces:
Serializable
,Comparable<SortExpression.SortDirection>
- Enclosing class:
- SortExpression
The direction search results are sorted by, either ascending or descending.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe search results are sorted in ascending order, e.g.The search results are sorted in descending order, e.g. -
Method Summary
Modifier and TypeMethodDescriptionstatic SortExpression.SortDirection
Returns the enum constant of this type with the specified name.static SortExpression.SortDirection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ASCENDING
The search results are sorted in ascending order, e.g. alphabetic aaa ... zzz -
DESCENDING
The search results are sorted in descending order, e.g. zzz ... aaa
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-