Enum SalesforceStandardObjectName
- java.lang.Object
-
- java.lang.Enum<SalesforceStandardObjectName>
-
- software.amazon.awssdk.services.kendra.model.SalesforceStandardObjectName
-
- All Implemented Interfaces:
Serializable,Comparable<SalesforceStandardObjectName>
@Generated("software.amazon.awssdk:codegen") public enum SalesforceStandardObjectName extends Enum<SalesforceStandardObjectName>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SalesforceStandardObjectNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SalesforceStandardObjectName>knownValues()StringtoString()static SalesforceStandardObjectNamevalueOf(String name)Returns the enum constant of this type with the specified name.static SalesforceStandardObjectName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT
public static final SalesforceStandardObjectName ACCOUNT
-
CAMPAIGN
public static final SalesforceStandardObjectName CAMPAIGN
-
CASE
public static final SalesforceStandardObjectName CASE
-
CONTACT
public static final SalesforceStandardObjectName CONTACT
-
CONTRACT
public static final SalesforceStandardObjectName CONTRACT
-
DOCUMENT
public static final SalesforceStandardObjectName DOCUMENT
-
GROUP
public static final SalesforceStandardObjectName GROUP
-
IDEA
public static final SalesforceStandardObjectName IDEA
-
LEAD
public static final SalesforceStandardObjectName LEAD
-
OPPORTUNITY
public static final SalesforceStandardObjectName OPPORTUNITY
-
PARTNER
public static final SalesforceStandardObjectName PARTNER
-
PRICEBOOK
public static final SalesforceStandardObjectName PRICEBOOK
-
PRODUCT
public static final SalesforceStandardObjectName PRODUCT
-
PROFILE
public static final SalesforceStandardObjectName PROFILE
-
SOLUTION
public static final SalesforceStandardObjectName SOLUTION
-
TASK
public static final SalesforceStandardObjectName TASK
-
USER
public static final SalesforceStandardObjectName USER
-
UNKNOWN_TO_SDK_VERSION
public static final SalesforceStandardObjectName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SalesforceStandardObjectName[] 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 (SalesforceStandardObjectName c : SalesforceStandardObjectName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SalesforceStandardObjectName 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<SalesforceStandardObjectName>
-
fromValue
public static SalesforceStandardObjectName 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:
- SalesforceStandardObjectName corresponding to the value
-
knownValues
public static Set<SalesforceStandardObjectName> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownSalesforceStandardObjectNames
-
-