Enum EntityTypeSort.Type
- java.lang.Object
-
- java.lang.Enum<EntityTypeSort.Type>
-
- software.amazon.awssdk.services.marketplacecatalog.model.EntityTypeSort.Type
-
- All Implemented Interfaces:
Serializable,Comparable<EntityTypeSort.Type>
- Enclosing class:
- EntityTypeSort
public static enum EntityTypeSort.Type extends Enum<EntityTypeSort.Type>
- See Also:
EntityTypeSort.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMI_PRODUCT_SORTCONTAINER_PRODUCT_SORTDATA_PRODUCT_SORTOFFER_SORTRESALE_AUTHORIZATION_SORTSAA_S_PRODUCT_SORTUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityTypeSort.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static EntityTypeSort.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_PRODUCT_SORT
public static final EntityTypeSort.Type DATA_PRODUCT_SORT
-
SAA_S_PRODUCT_SORT
public static final EntityTypeSort.Type SAA_S_PRODUCT_SORT
-
AMI_PRODUCT_SORT
public static final EntityTypeSort.Type AMI_PRODUCT_SORT
-
OFFER_SORT
public static final EntityTypeSort.Type OFFER_SORT
-
CONTAINER_PRODUCT_SORT
public static final EntityTypeSort.Type CONTAINER_PRODUCT_SORT
-
RESALE_AUTHORIZATION_SORT
public static final EntityTypeSort.Type RESALE_AUTHORIZATION_SORT
-
UNKNOWN_TO_SDK_VERSION
public static final EntityTypeSort.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static EntityTypeSort.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 (EntityTypeSort.Type c : EntityTypeSort.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 EntityTypeSort.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
-
-