Enum PolicyGrantDetail.Type
- java.lang.Object
-
- java.lang.Enum<PolicyGrantDetail.Type>
-
- software.amazon.awssdk.services.datazone.model.PolicyGrantDetail.Type
-
- All Implemented Interfaces:
Serializable,Comparable<PolicyGrantDetail.Type>
- Enclosing class:
- PolicyGrantDetail
public static enum PolicyGrantDetail.Type extends Enum<PolicyGrantDetail.Type>
- See Also:
PolicyGrantDetail.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PolicyGrantDetail.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static PolicyGrantDetail.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_TO_PROJECT_MEMBER_POOL
public static final PolicyGrantDetail.Type ADD_TO_PROJECT_MEMBER_POOL
-
CREATE_ASSET_TYPE
public static final PolicyGrantDetail.Type CREATE_ASSET_TYPE
-
CREATE_DOMAIN_UNIT
public static final PolicyGrantDetail.Type CREATE_DOMAIN_UNIT
-
CREATE_ENVIRONMENT
public static final PolicyGrantDetail.Type CREATE_ENVIRONMENT
-
CREATE_ENVIRONMENT_PROFILE
public static final PolicyGrantDetail.Type CREATE_ENVIRONMENT_PROFILE
-
CREATE_FORM_TYPE
public static final PolicyGrantDetail.Type CREATE_FORM_TYPE
-
CREATE_GLOSSARY
public static final PolicyGrantDetail.Type CREATE_GLOSSARY
-
CREATE_PROJECT
public static final PolicyGrantDetail.Type CREATE_PROJECT
-
DELEGATE_CREATE_ENVIRONMENT_PROFILE
public static final PolicyGrantDetail.Type DELEGATE_CREATE_ENVIRONMENT_PROFILE
-
OVERRIDE_DOMAIN_UNIT_OWNERS
public static final PolicyGrantDetail.Type OVERRIDE_DOMAIN_UNIT_OWNERS
-
OVERRIDE_PROJECT_OWNERS
public static final PolicyGrantDetail.Type OVERRIDE_PROJECT_OWNERS
-
UNKNOWN_TO_SDK_VERSION
public static final PolicyGrantDetail.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static PolicyGrantDetail.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 (PolicyGrantDetail.Type c : PolicyGrantDetail.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 PolicyGrantDetail.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
-
-