public static enum AuthenticationMethod.AuthCheckingStrategy extends Enum<AuthenticationMethod.AuthCheckingStrategy>
Enum Constant and Description |
---|
EACH_REQ |
EACH_REQ_RESP |
EACH_RESP |
POLL_URL |
Modifier and Type | Method and Description |
---|---|
static AuthenticationMethod.AuthCheckingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationMethod.AuthCheckingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationMethod.AuthCheckingStrategy EACH_RESP
public static final AuthenticationMethod.AuthCheckingStrategy EACH_REQ
public static final AuthenticationMethod.AuthCheckingStrategy EACH_REQ_RESP
public static final AuthenticationMethod.AuthCheckingStrategy POLL_URL
public static AuthenticationMethod.AuthCheckingStrategy[] values()
for (AuthenticationMethod.AuthCheckingStrategy c : AuthenticationMethod.AuthCheckingStrategy.values()) System.out.println(c);
public static AuthenticationMethod.AuthCheckingStrategy 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 null