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