Enum AclGrantee.Type
- java.lang.Object
-
- java.lang.Enum<AclGrantee.Type>
-
- software.amazon.awssdk.services.accessanalyzer.model.AclGrantee.Type
-
- All Implemented Interfaces:
Serializable,Comparable<AclGrantee.Type>
- Enclosing class:
- AclGrantee
public static enum AclGrantee.Type extends Enum<AclGrantee.Type>
- See Also:
AclGrantee.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDUNKNOWN_TO_SDK_VERSIONURI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AclGrantee.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static AclGrantee.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final AclGrantee.Type ID
-
URI
public static final AclGrantee.Type URI
-
UNKNOWN_TO_SDK_VERSION
public static final AclGrantee.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AclGrantee.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 (AclGrantee.Type c : AclGrantee.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 AclGrantee.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
-
-