Enum Account_ShippingGeocodeAccuracyEnum
- java.lang.Object
-
- java.lang.Enum<Account_ShippingGeocodeAccuracyEnum>
-
- org.apache.camel.quarkus.component.salesforce.generated.Account_ShippingGeocodeAccuracyEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Account_ShippingGeocodeAccuracyEnum>
@Generated("org.apache.camel.maven.CamelSalesforceMojo") public enum Account_ShippingGeocodeAccuracyEnum extends Enum<Account_ShippingGeocodeAccuracyEnum>Salesforce Enumeration DTO for picklist ShippingGeocodeAccuracy
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESSBLOCKCITYCOUNTYEXTENDEDZIPNEARADDRESSNEIGHBORHOODSTATESTREETUNKNOWNZIP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Account_ShippingGeocodeAccuracyEnumfromValue(String value)Stringvalue()static Account_ShippingGeocodeAccuracyEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Account_ShippingGeocodeAccuracyEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDRESS
public static final Account_ShippingGeocodeAccuracyEnum ADDRESS
-
BLOCK
public static final Account_ShippingGeocodeAccuracyEnum BLOCK
-
CITY
public static final Account_ShippingGeocodeAccuracyEnum CITY
-
COUNTY
public static final Account_ShippingGeocodeAccuracyEnum COUNTY
-
EXTENDEDZIP
public static final Account_ShippingGeocodeAccuracyEnum EXTENDEDZIP
-
NEARADDRESS
public static final Account_ShippingGeocodeAccuracyEnum NEARADDRESS
-
NEIGHBORHOOD
public static final Account_ShippingGeocodeAccuracyEnum NEIGHBORHOOD
-
STATE
public static final Account_ShippingGeocodeAccuracyEnum STATE
-
STREET
public static final Account_ShippingGeocodeAccuracyEnum STREET
-
UNKNOWN
public static final Account_ShippingGeocodeAccuracyEnum UNKNOWN
-
ZIP
public static final Account_ShippingGeocodeAccuracyEnum ZIP
-
-
Field Detail
-
value
final String value
-
-
Method Detail
-
values
public static Account_ShippingGeocodeAccuracyEnum[] 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_ShippingGeocodeAccuracyEnum c : Account_ShippingGeocodeAccuracyEnum.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_ShippingGeocodeAccuracyEnum 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_ShippingGeocodeAccuracyEnum fromValue(String value)
-
-