Enum Class PortalGroup.SortOrder

java.lang.Object
java.lang.Enum<PortalGroup.SortOrder>
com.esri.arcgisruntime.portal.PortalGroup.SortOrder
All Implemented Interfaces:
Serializable, Comparable<PortalGroup.SortOrder>, Constable
Enclosing class:
PortalGroup

public static enum PortalGroup.SortOrder extends Enum<PortalGroup.SortOrder>
Signifies the sort order for items in a portal group.
Since:
100.0.0
  • Enum Constant Details

    • ASCENDING

      @SerializedName("asc") public static final PortalGroup.SortOrder ASCENDING
      Sort order is ascending.
      Since:
      100.0.0
    • DESCENDING

      @SerializedName("desc") public static final PortalGroup.SortOrder DESCENDING
      Sort order is descending.
      Since:
      100.0.0
  • Method Details

    • values

      public static PortalGroup.SortOrder[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PortalGroup.SortOrder valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Returns a string representing the sort order.
      Overrides:
      toString in class Enum<PortalGroup.SortOrder>
      Returns:
      a string representing the sort order
      Since:
      100.0.0