public enum ClientAuthType extends Enum<ClientAuthType>
Enum Constant and Description |
---|
Default |
Disabled |
DisabledAll |
Enabled |
Want |
Modifier and Type | Method and Description |
---|---|
static ClientAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientAuthType Enabled
public static final ClientAuthType Disabled
public static final ClientAuthType DisabledAll
public static final ClientAuthType Want
public static final ClientAuthType Default
public static ClientAuthType[] values()
for (ClientAuthType c : ClientAuthType.values()) System.out.println(c);
public static ClientAuthType 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 © 2018. All Rights Reserved.