@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum PrincipalMappingStatus extends Enum<PrincipalMappingStatus>
| Enum Constant and Description |
|---|
DELETED |
DELETING |
FAILED |
PROCESSING |
SUCCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static PrincipalMappingStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static PrincipalMappingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrincipalMappingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrincipalMappingStatus FAILED
public static final PrincipalMappingStatus SUCCEEDED
public static final PrincipalMappingStatus PROCESSING
public static final PrincipalMappingStatus DELETING
public static final PrincipalMappingStatus DELETED
public static PrincipalMappingStatus[] values()
for (PrincipalMappingStatus c : PrincipalMappingStatus.values()) System.out.println(c);
public static PrincipalMappingStatus 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<PrincipalMappingStatus>public static PrincipalMappingStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.