public enum AuthenticatorType extends java.lang.Enum<AuthenticatorType>
Enum Constant and Description |
---|
KERBEROS
Authentication that uses Kerberos.
|
NONE
No authentication.
|
OAUTH
Authentication that uses OAuth.
|
SIMPLE
Simple authentication.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticatorType NONE
public static final AuthenticatorType SIMPLE
public static final AuthenticatorType OAUTH
public static final AuthenticatorType KERBEROS
public static AuthenticatorType[] values()
for (AuthenticatorType c : AuthenticatorType.values()) System.out.println(c);
public static AuthenticatorType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null