@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AllowedOperation extends Enum<AllowedOperation>
Enum Constant and Description |
---|
CheckInLicense |
CheckoutBorrowLicense |
CheckoutLicense |
CreateGrant |
CreateToken |
ExtendConsumptionLicense |
ListPurchasedLicenses |
Modifier and Type | Method and Description |
---|---|
static AllowedOperation |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AllowedOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AllowedOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowedOperation CreateGrant
public static final AllowedOperation CheckoutLicense
public static final AllowedOperation CheckoutBorrowLicense
public static final AllowedOperation CheckInLicense
public static final AllowedOperation ExtendConsumptionLicense
public static final AllowedOperation ListPurchasedLicenses
public static final AllowedOperation CreateToken
public static AllowedOperation[] values()
for (AllowedOperation c : AllowedOperation.values()) System.out.println(c);
public static AllowedOperation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<AllowedOperation>
public static AllowedOperation fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.