Enum AwsOpportunityStage
- java.lang.Object
-
- java.lang.Enum<AwsOpportunityStage>
-
- software.amazon.awssdk.services.partnercentralselling.model.AwsOpportunityStage
-
- All Implemented Interfaces:
Serializable,Comparable<AwsOpportunityStage>
@Generated("software.amazon.awssdk:codegen") public enum AwsOpportunityStage extends Enum<AwsOpportunityStage>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AwsOpportunityStagefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AwsOpportunityStage>knownValues()StringtoString()static AwsOpportunityStagevalueOf(String name)Returns the enum constant of this type with the specified name.static AwsOpportunityStage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_STARTED
public static final AwsOpportunityStage NOT_STARTED
-
IN_PROGRESS
public static final AwsOpportunityStage IN_PROGRESS
-
PROSPECT
public static final AwsOpportunityStage PROSPECT
-
ENGAGED
public static final AwsOpportunityStage ENGAGED
-
IDENTIFIED
public static final AwsOpportunityStage IDENTIFIED
-
QUALIFY
public static final AwsOpportunityStage QUALIFY
-
RESEARCH
public static final AwsOpportunityStage RESEARCH
-
SELLER_ENGAGED
public static final AwsOpportunityStage SELLER_ENGAGED
-
EVALUATING
public static final AwsOpportunityStage EVALUATING
-
SELLER_REGISTERED
public static final AwsOpportunityStage SELLER_REGISTERED
-
TERM_SHEET_NEGOTIATION
public static final AwsOpportunityStage TERM_SHEET_NEGOTIATION
-
CONTRACT_NEGOTIATION
public static final AwsOpportunityStage CONTRACT_NEGOTIATION
-
ONBOARDING
public static final AwsOpportunityStage ONBOARDING
-
BUILDING_INTEGRATION
public static final AwsOpportunityStage BUILDING_INTEGRATION
-
QUALIFIED
public static final AwsOpportunityStage QUALIFIED
-
ON_HOLD
public static final AwsOpportunityStage ON_HOLD
-
TECHNICAL_VALIDATION
public static final AwsOpportunityStage TECHNICAL_VALIDATION
-
BUSINESS_VALIDATION
public static final AwsOpportunityStage BUSINESS_VALIDATION
-
COMMITTED
public static final AwsOpportunityStage COMMITTED
-
LAUNCHED
public static final AwsOpportunityStage LAUNCHED
-
DEFERRED_TO_PARTNER
public static final AwsOpportunityStage DEFERRED_TO_PARTNER
-
CLOSED_LOST
public static final AwsOpportunityStage CLOSED_LOST
-
COMPLETED
public static final AwsOpportunityStage COMPLETED
-
CLOSED_INCOMPLETE
public static final AwsOpportunityStage CLOSED_INCOMPLETE
-
UNKNOWN_TO_SDK_VERSION
public static final AwsOpportunityStage UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AwsOpportunityStage[] 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 (AwsOpportunityStage c : AwsOpportunityStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AwsOpportunityStage 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<AwsOpportunityStage>
-
fromValue
public static AwsOpportunityStage 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:
- AwsOpportunityStage corresponding to the value
-
knownValues
public static Set<AwsOpportunityStage> 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 knownAwsOpportunityStages
-
-