@Stability.Volatile public enum AuthenticationStatus extends Enum<AuthenticationStatus>
Enum Constant and Description |
---|
FAILED
Authentication failed.
|
SUCCEEDED
Authentication was successful.
|
UNKNOWN
Authentication is in progress or has not started.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationStatus UNKNOWN
public static final AuthenticationStatus SUCCEEDED
public static final AuthenticationStatus FAILED
public static AuthenticationStatus[] values()
for (AuthenticationStatus c : AuthenticationStatus.values()) System.out.println(c);
public static AuthenticationStatus 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 © 2024 Couchbase, Inc.. All rights reserved.