public enum EAuthError extends Enum<EAuthError>
Enum Constant and Description |
---|
FAILED_ALREADY_CONNECTED |
FAILED_INVALID_KEY |
FAILED_UNKNOWN_ERROR |
Modifier and Type | Method and Description |
---|---|
static EAuthError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EAuthError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EAuthError FAILED_INVALID_KEY
public static final EAuthError FAILED_ALREADY_CONNECTED
public static final EAuthError FAILED_UNKNOWN_ERROR
public static EAuthError[] values()
for (EAuthError c : EAuthError.values()) System.out.println(c);
public static EAuthError 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 © 2020 XIMA MEDIA GmbH. All rights reserved.