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

public static enum SortExpression.SortDirection extends Enum<SortExpression.SortDirection>
The direction search results are sorted by, either ascending or descending.
  • Enum Constant Details

    • ASCENDING

      public static final SortExpression.SortDirection ASCENDING
      The search results are sorted in ascending order, e.g. alphabetic aaa ... zzz
    • DESCENDING

      public static final SortExpression.SortDirection DESCENDING
      The search results are sorted in descending order, e.g. zzz ... aaa
  • Method Details

    • values

      public static SortExpression.SortDirection[] 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

      public static SortExpression.SortDirection 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 name
      NullPointerException - if the argument is null