Enum Industry
- java.lang.Object
-
- java.lang.Enum<Industry>
-
- software.amazon.awssdk.services.partnercentralselling.model.Industry
-
- All Implemented Interfaces:
Serializable,Comparable<Industry>
@Generated("software.amazon.awssdk:codegen") public enum Industry extends Enum<Industry>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IndustryfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<Industry>knownValues()StringtoString()static IndustryvalueOf(String name)Returns the enum constant of this type with the specified name.static Industry[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AEROSPACE
public static final Industry AEROSPACE
-
AGRICULTURE
public static final Industry AGRICULTURE
-
AUTOMOTIVE
public static final Industry AUTOMOTIVE
-
COMPUTERS_AND_ELECTRONICS
public static final Industry COMPUTERS_AND_ELECTRONICS
-
CONSUMER_GOODS
public static final Industry CONSUMER_GOODS
-
EDUCATION
public static final Industry EDUCATION
-
ENERGY_OIL_AND_GAS
public static final Industry ENERGY_OIL_AND_GAS
-
ENERGY_POWER_AND_UTILITIES
public static final Industry ENERGY_POWER_AND_UTILITIES
-
FINANCIAL_SERVICES
public static final Industry FINANCIAL_SERVICES
-
GAMING
public static final Industry GAMING
-
GOVERNMENT
public static final Industry GOVERNMENT
-
HEALTHCARE
public static final Industry HEALTHCARE
-
HOSPITALITY
public static final Industry HOSPITALITY
-
LIFE_SCIENCES
public static final Industry LIFE_SCIENCES
-
MANUFACTURING
public static final Industry MANUFACTURING
-
MARKETING_AND_ADVERTISING
public static final Industry MARKETING_AND_ADVERTISING
-
MEDIA_AND_ENTERTAINMENT
public static final Industry MEDIA_AND_ENTERTAINMENT
-
MINING
public static final Industry MINING
-
NON_PROFIT_ORGANIZATION
public static final Industry NON_PROFIT_ORGANIZATION
-
PROFESSIONAL_SERVICES
public static final Industry PROFESSIONAL_SERVICES
-
REAL_ESTATE_AND_CONSTRUCTION
public static final Industry REAL_ESTATE_AND_CONSTRUCTION
-
RETAIL
public static final Industry RETAIL
-
SOFTWARE_AND_INTERNET
public static final Industry SOFTWARE_AND_INTERNET
-
TELECOMMUNICATIONS
public static final Industry TELECOMMUNICATIONS
-
TRANSPORTATION_AND_LOGISTICS
public static final Industry TRANSPORTATION_AND_LOGISTICS
-
TRAVEL
public static final Industry TRAVEL
-
WHOLESALE_AND_DISTRIBUTION
public static final Industry WHOLESALE_AND_DISTRIBUTION
-
OTHER
public static final Industry OTHER
-
UNKNOWN_TO_SDK_VERSION
public static final Industry UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static Industry[] 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 (Industry c : Industry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Industry 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
-
fromValue
public static Industry fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- Industry corresponding to the value
-
-