Package com.esri.arcgisruntime.portal
Enum PortalQueryParameters.SortOrder
- java.lang.Object
-
- java.lang.Enum<PortalQueryParameters.SortOrder>
-
- com.esri.arcgisruntime.portal.PortalQueryParameters.SortOrder
-
- All Implemented Interfaces:
Serializable
,Comparable<PortalQueryParameters.SortOrder>
- Enclosing class:
- PortalQueryParameters
public static enum PortalQueryParameters.SortOrder extends Enum<PortalQueryParameters.SortOrder>
Signifies the sort order, indicating whether results are returned in ascending or descending order.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASCENDING
Sort order is ascending.DESCENDING
Sort order is descending.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
Returns a string representing the sort order.static PortalQueryParameters.SortOrder
valueOf(String name)
Returns the enum constant of this type with the specified name.static PortalQueryParameters.SortOrder[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASCENDING
@SerializedName("asc") public static final PortalQueryParameters.SortOrder ASCENDING
Sort order is ascending.- Since:
- 100.0.0
-
DESCENDING
@SerializedName("desc") public static final PortalQueryParameters.SortOrder DESCENDING
Sort order is descending.- Since:
- 100.0.0
-
-
Method Detail
-
values
public static PortalQueryParameters.SortOrder[] 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 (PortalQueryParameters.SortOrder c : PortalQueryParameters.SortOrder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PortalQueryParameters.SortOrder 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
-
toString
public String toString()
Returns a string representing the sort order.- Overrides:
toString
in classEnum<PortalQueryParameters.SortOrder>
- Returns:
- a string representing the sort order
- Since:
- 100.0.0
-
-