Enum SearchSortExpression.Type
- java.lang.Object
-
- java.lang.Enum<SearchSortExpression.Type>
-
- software.amazon.awssdk.services.deadline.model.SearchSortExpression.Type
-
- All Implemented Interfaces:
Serializable,Comparable<SearchSortExpression.Type>
- Enclosing class:
- SearchSortExpression
public static enum SearchSortExpression.Type extends Enum<SearchSortExpression.Type>
- See Also:
SearchSortExpression.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIELD_SORTPARAMETER_SORTUNKNOWN_TO_SDK_VERSIONUSER_JOBS_FIRST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchSortExpression.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchSortExpression.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELD_SORT
public static final SearchSortExpression.Type FIELD_SORT
-
PARAMETER_SORT
public static final SearchSortExpression.Type PARAMETER_SORT
-
USER_JOBS_FIRST
public static final SearchSortExpression.Type USER_JOBS_FIRST
-
UNKNOWN_TO_SDK_VERSION
public static final SearchSortExpression.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SearchSortExpression.Type[] 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 (SearchSortExpression.Type c : SearchSortExpression.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchSortExpression.Type 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
-
-