public enum AuthenticationTypeParser extends Enum<AuthenticationTypeParser>
| Enum Constant and Description |
|---|
CERTIFICATE_AUTHORITY |
SAS |
SELF_SIGNED |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationTypeParser |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationTypeParser[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="sas") public static final AuthenticationTypeParser SAS
@SerializedName(value="selfSigned") public static final AuthenticationTypeParser SELF_SIGNED
@SerializedName(value="certificateAuthority") public static final AuthenticationTypeParser CERTIFICATE_AUTHORITY
public static AuthenticationTypeParser[] values()
for (AuthenticationTypeParser c : AuthenticationTypeParser.values()) System.out.println(c);
public static AuthenticationTypeParser 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 nullCopyright © 2019. All rights reserved.