Enum SalesActivity
- java.lang.Object
-
- java.lang.Enum<SalesActivity>
-
- software.amazon.awssdk.services.partnercentralselling.model.SalesActivity
-
- All Implemented Interfaces:
Serializable,Comparable<SalesActivity>
@Generated("software.amazon.awssdk:codegen") public enum SalesActivity extends Enum<SalesActivity>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SalesActivityfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SalesActivity>knownValues()StringtoString()static SalesActivityvalueOf(String name)Returns the enum constant of this type with the specified name.static SalesActivity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIALIZED_DISCUSSIONS_WITH_CUSTOMER
public static final SalesActivity INITIALIZED_DISCUSSIONS_WITH_CUSTOMER
-
CUSTOMER_HAS_SHOWN_INTEREST_IN_SOLUTION
public static final SalesActivity CUSTOMER_HAS_SHOWN_INTEREST_IN_SOLUTION
-
CONDUCTED_POC_DEMO
public static final SalesActivity CONDUCTED_POC_DEMO
-
IN_EVALUATION_PLANNING_STAGE
public static final SalesActivity IN_EVALUATION_PLANNING_STAGE
-
AGREED_ON_SOLUTION_TO_BUSINESS_PROBLEM
public static final SalesActivity AGREED_ON_SOLUTION_TO_BUSINESS_PROBLEM
-
COMPLETED_ACTION_PLAN
public static final SalesActivity COMPLETED_ACTION_PLAN
-
FINALIZED_DEPLOYMENT_NEED
public static final SalesActivity FINALIZED_DEPLOYMENT_NEED
-
SOW_SIGNED
public static final SalesActivity SOW_SIGNED
-
UNKNOWN_TO_SDK_VERSION
public static final SalesActivity UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SalesActivity[] 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 (SalesActivity c : SalesActivity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SalesActivity 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<SalesActivity>
-
fromValue
public static SalesActivity 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:
- SalesActivity corresponding to the value
-
knownValues
public static Set<SalesActivity> 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 knownSalesActivitys
-
-