Enum AcceptedTerm.Type
- java.lang.Object
-
- java.lang.Enum<AcceptedTerm.Type>
-
- software.amazon.awssdk.services.marketplaceagreement.model.AcceptedTerm.Type
-
- All Implemented Interfaces:
Serializable,Comparable<AcceptedTerm.Type>
- Enclosing class:
- AcceptedTerm
public static enum AcceptedTerm.Type extends Enum<AcceptedTerm.Type>
- See Also:
AcceptedTerm.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AcceptedTerm.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static AcceptedTerm.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYOL_PRICING_TERM
public static final AcceptedTerm.Type BYOL_PRICING_TERM
-
CONFIGURABLE_UPFRONT_PRICING_TERM
public static final AcceptedTerm.Type CONFIGURABLE_UPFRONT_PRICING_TERM
-
FIXED_UPFRONT_PRICING_TERM
public static final AcceptedTerm.Type FIXED_UPFRONT_PRICING_TERM
-
FREE_TRIAL_PRICING_TERM
public static final AcceptedTerm.Type FREE_TRIAL_PRICING_TERM
-
LEGAL_TERM
public static final AcceptedTerm.Type LEGAL_TERM
-
PAYMENT_SCHEDULE_TERM
public static final AcceptedTerm.Type PAYMENT_SCHEDULE_TERM
-
RECURRING_PAYMENT_TERM
public static final AcceptedTerm.Type RECURRING_PAYMENT_TERM
-
RENEWAL_TERM
public static final AcceptedTerm.Type RENEWAL_TERM
-
SUPPORT_TERM
public static final AcceptedTerm.Type SUPPORT_TERM
-
USAGE_BASED_PRICING_TERM
public static final AcceptedTerm.Type USAGE_BASED_PRICING_TERM
-
VALIDITY_TERM
public static final AcceptedTerm.Type VALIDITY_TERM
-
UNKNOWN_TO_SDK_VERSION
public static final AcceptedTerm.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AcceptedTerm.Type[] 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 (AcceptedTerm.Type c : AcceptedTerm.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcceptedTerm.Type 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
-
-