public static enum AuthInfo.AuthenticationType extends Enum<AuthInfo.AuthenticationType>
| Enum Constant and Description |
|---|
BASIC_AUTHENTICATION |
FORM_AUTHENTICATION |
NT_AUTHENTICATION |
| Modifier and Type | Method and Description |
|---|---|
static AuthInfo.AuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthInfo.AuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthInfo.AuthenticationType BASIC_AUTHENTICATION
public static final AuthInfo.AuthenticationType FORM_AUTHENTICATION
public static final AuthInfo.AuthenticationType NT_AUTHENTICATION
public static AuthInfo.AuthenticationType[] values()
for (AuthInfo.AuthenticationType c : AuthInfo.AuthenticationType.values()) System.out.println(c);
public static AuthInfo.AuthenticationType 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 © 2017. All rights reserved.