public enum SecurityError extends java.lang.Enum<SecurityError>
| Enum Constant and Description |
|---|
AUTHENTICATION_ERROR_BAD_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
static SecurityError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityError AUTHENTICATION_ERROR_BAD_CREDENTIALS
public static SecurityError[] values()
for (SecurityError c : SecurityError.values()) System.out.println(c);
public static SecurityError 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 nullpublic java.lang.String getCode()
Copyright © 2018 SAP SE. All Rights Reserved.