Enum Account_TypeEnum
- java.lang.Object
-
- java.lang.Enum<Account_TypeEnum>
-
- org.apache.camel.quarkus.component.salesforce.generated.Account_TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Account_TypeEnum>
@Generated("org.apache.camel.maven.CamelSalesforceMojo") public enum Account_TypeEnum extends Enum<Account_TypeEnum>Salesforce Enumeration DTO for picklist Type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANNEL_PARTNER___RESELLERCUSTOMER___CHANNELCUSTOMER___DIRECTINSTALLATION_PARTNEROTHERPROSPECTTECHNOLOGY_PARTNER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Account_TypeEnumfromValue(String value)Stringvalue()static Account_TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Account_TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANNEL_PARTNER___RESELLER
public static final Account_TypeEnum CHANNEL_PARTNER___RESELLER
-
CUSTOMER___CHANNEL
public static final Account_TypeEnum CUSTOMER___CHANNEL
-
CUSTOMER___DIRECT
public static final Account_TypeEnum CUSTOMER___DIRECT
-
INSTALLATION_PARTNER
public static final Account_TypeEnum INSTALLATION_PARTNER
-
OTHER
public static final Account_TypeEnum OTHER
-
PROSPECT
public static final Account_TypeEnum PROSPECT
-
TECHNOLOGY_PARTNER
public static final Account_TypeEnum TECHNOLOGY_PARTNER
-
-
Field Detail
-
value
final String value
-
-
Method Detail
-
values
public static Account_TypeEnum[] 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_TypeEnum c : Account_TypeEnum.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_TypeEnum 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_TypeEnum fromValue(String value)
-
-