Enum Account_IndustryEnum
- java.lang.Object
-
- java.lang.Enum<Account_IndustryEnum>
-
- org.apache.camel.quarkus.component.salesforce.generated.Account_IndustryEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Account_IndustryEnum>
@Generated("org.apache.camel.maven.CamelSalesforceMojo") public enum Account_IndustryEnum extends Enum<Account_IndustryEnum>Salesforce Enumeration DTO for picklist Industry
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Account_IndustryEnumfromValue(String value)Stringvalue()static Account_IndustryEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Account_IndustryEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGRICULTURE
public static final Account_IndustryEnum AGRICULTURE
-
APPAREL
public static final Account_IndustryEnum APPAREL
-
BANKING
public static final Account_IndustryEnum BANKING
-
BIOTECHNOLOGY
public static final Account_IndustryEnum BIOTECHNOLOGY
-
CHEMICALS
public static final Account_IndustryEnum CHEMICALS
-
COMMUNICATIONS
public static final Account_IndustryEnum COMMUNICATIONS
-
CONSTRUCTION
public static final Account_IndustryEnum CONSTRUCTION
-
CONSULTING
public static final Account_IndustryEnum CONSULTING
-
EDUCATION
public static final Account_IndustryEnum EDUCATION
-
ELECTRONICS
public static final Account_IndustryEnum ELECTRONICS
-
ENERGY
public static final Account_IndustryEnum ENERGY
-
ENGINEERING
public static final Account_IndustryEnum ENGINEERING
-
ENTERTAINMENT
public static final Account_IndustryEnum ENTERTAINMENT
-
ENVIRONMENTAL
public static final Account_IndustryEnum ENVIRONMENTAL
-
FINANCE
public static final Account_IndustryEnum FINANCE
-
FOOD___BEVERAGE
public static final Account_IndustryEnum FOOD___BEVERAGE
-
GOVERNMENT
public static final Account_IndustryEnum GOVERNMENT
-
HEALTHCARE
public static final Account_IndustryEnum HEALTHCARE
-
HOSPITALITY
public static final Account_IndustryEnum HOSPITALITY
-
INSURANCE
public static final Account_IndustryEnum INSURANCE
-
MACHINERY
public static final Account_IndustryEnum MACHINERY
-
MANUFACTURING
public static final Account_IndustryEnum MANUFACTURING
-
MEDIA
public static final Account_IndustryEnum MEDIA
-
NOT_FOR_PROFIT
public static final Account_IndustryEnum NOT_FOR_PROFIT
-
OTHER
public static final Account_IndustryEnum OTHER
-
RECREATION
public static final Account_IndustryEnum RECREATION
-
RETAIL
public static final Account_IndustryEnum RETAIL
-
SHIPPING
public static final Account_IndustryEnum SHIPPING
-
TECHNOLOGY
public static final Account_IndustryEnum TECHNOLOGY
-
TELECOMMUNICATIONS
public static final Account_IndustryEnum TELECOMMUNICATIONS
-
TRANSPORTATION
public static final Account_IndustryEnum TRANSPORTATION
-
UTILITIES
public static final Account_IndustryEnum UTILITIES
-
-
Field Detail
-
value
final String value
-
-
Method Detail
-
values
public static Account_IndustryEnum[] 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 (Account_IndustryEnum c : Account_IndustryEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Account_IndustryEnum 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
-
value
public String value()
-
fromValue
public static Account_IndustryEnum fromValue(String value)
-
-