Enum ReceiverResponsibility
- java.lang.Object
-
- java.lang.Enum<ReceiverResponsibility>
-
- software.amazon.awssdk.services.partnercentralselling.model.ReceiverResponsibility
-
- All Implemented Interfaces:
Serializable,Comparable<ReceiverResponsibility>
@Generated("software.amazon.awssdk:codegen") public enum ReceiverResponsibility extends Enum<ReceiverResponsibility>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CO_SELL_FACILITATORDISTRIBUTORFACILITATORHARDWARE_PARTNERMANAGED_SERVICE_PROVIDERRESELLERSERVICES_PARTNERSOFTWARE_PARTNERTRAINING_PARTNERUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReceiverResponsibilityfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ReceiverResponsibility>knownValues()StringtoString()static ReceiverResponsibilityvalueOf(String name)Returns the enum constant of this type with the specified name.static ReceiverResponsibility[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISTRIBUTOR
public static final ReceiverResponsibility DISTRIBUTOR
-
RESELLER
public static final ReceiverResponsibility RESELLER
-
HARDWARE_PARTNER
public static final ReceiverResponsibility HARDWARE_PARTNER
-
MANAGED_SERVICE_PROVIDER
public static final ReceiverResponsibility MANAGED_SERVICE_PROVIDER
-
SOFTWARE_PARTNER
public static final ReceiverResponsibility SOFTWARE_PARTNER
-
SERVICES_PARTNER
public static final ReceiverResponsibility SERVICES_PARTNER
-
TRAINING_PARTNER
public static final ReceiverResponsibility TRAINING_PARTNER
-
CO_SELL_FACILITATOR
public static final ReceiverResponsibility CO_SELL_FACILITATOR
-
FACILITATOR
public static final ReceiverResponsibility FACILITATOR
-
UNKNOWN_TO_SDK_VERSION
public static final ReceiverResponsibility UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ReceiverResponsibility[] 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 (ReceiverResponsibility c : ReceiverResponsibility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReceiverResponsibility 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<ReceiverResponsibility>
-
fromValue
public static ReceiverResponsibility 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:
- ReceiverResponsibility corresponding to the value
-
knownValues
public static Set<ReceiverResponsibility> 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 knownReceiverResponsibilitys
-
-