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