public static enum AuthenticationError.StatusEnum extends Enum<AuthenticationError.StatusEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
AuthenticationError.StatusEnum.Adapter |
| Enum Constant and Description |
|---|
ERROR |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationError.StatusEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static AuthenticationError.StatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationError.StatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationError.StatusEnum ERROR
public static AuthenticationError.StatusEnum[] values()
for (AuthenticationError.StatusEnum c : AuthenticationError.StatusEnum.values()) System.out.println(c);
public static AuthenticationError.StatusEnum 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 nullpublic String getValue()
public String toString()
toString in class Enum<AuthenticationError.StatusEnum>public static AuthenticationError.StatusEnum fromValue(String text)
Copyright © 2020. All rights reserved.