static enum HttpAuthenticationFeature.Mode extends java.lang.Enum<HttpAuthenticationFeature.Mode>
Enum Constant and Description |
---|
BASIC_NON_PREEMPTIVE
Basic non preemptive
|
BASIC_PREEMPTIVE
Basic preemptive.
|
DIGEST
Digest.
|
UNIVERSAL
Universal.
|
Modifier and Type | Method and Description |
---|---|
static HttpAuthenticationFeature.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpAuthenticationFeature.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpAuthenticationFeature.Mode BASIC_PREEMPTIVE
public static final HttpAuthenticationFeature.Mode BASIC_NON_PREEMPTIVE
public static final HttpAuthenticationFeature.Mode DIGEST
public static final HttpAuthenticationFeature.Mode UNIVERSAL
public static HttpAuthenticationFeature.Mode[] values()
for (HttpAuthenticationFeature.Mode c : HttpAuthenticationFeature.Mode.values()) System.out.println(c);
public static HttpAuthenticationFeature.Mode 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