public enum AuthProtocolState extends Enum<AuthProtocolState>
Enum Constant and Description |
---|
CHALLENGED |
FAILURE |
HANDSHAKE |
SUCCESS |
UNCHALLENGED |
Modifier and Type | Method and Description |
---|---|
static AuthProtocolState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthProtocolState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthProtocolState UNCHALLENGED
public static final AuthProtocolState CHALLENGED
public static final AuthProtocolState HANDSHAKE
public static final AuthProtocolState FAILURE
public static final AuthProtocolState SUCCESS
public static AuthProtocolState[] values()
for (AuthProtocolState c : AuthProtocolState.values()) System.out.println(c);
public static AuthProtocolState 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 © 1999–2022 The Apache Software Foundation. All rights reserved.