Enum CredentialDocument.UnionMember
- java.lang.Object
-
- java.lang.Enum<CredentialDocument.UnionMember>
-
- software.amazon.awssdk.aws.greengrass.model.CredentialDocument.UnionMember
-
- All Implemented Interfaces:
Serializable
,Comparable<CredentialDocument.UnionMember>
- Enclosing class:
- CredentialDocument
public static enum CredentialDocument.UnionMember extends Enum<CredentialDocument.UnionMember>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MQTT_CREDENTIAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CredentialDocument.UnionMember
valueOf(String name)
Returns the enum constant of this type with the specified name.static CredentialDocument.UnionMember[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MQTT_CREDENTIAL
public static final CredentialDocument.UnionMember MQTT_CREDENTIAL
-
-
Method Detail
-
values
public static CredentialDocument.UnionMember[] 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 (CredentialDocument.UnionMember c : CredentialDocument.UnionMember.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CredentialDocument.UnionMember 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
-
-