public enum LineApiResponseCode extends java.lang.Enum<LineApiResponseCode>
| Enum Constant and Description |
|---|
AUTHENTICATION_AGENT_ERROR
An authentication agent error occurred.
|
CANCEL
The request was canceled.
|
INTERNAL_ERROR
An internal error occurred.
|
NETWORK_ERROR
A network error occurred.
|
SERVER_ERROR
A server error occurred.
|
SUCCESS
The request was successful.
|
| Modifier and Type | Method and Description |
|---|---|
static LineApiResponseCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineApiResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineApiResponseCode SUCCESS
public static final LineApiResponseCode CANCEL
public static final LineApiResponseCode NETWORK_ERROR
public static final LineApiResponseCode SERVER_ERROR
public static final LineApiResponseCode AUTHENTICATION_AGENT_ERROR
public static final LineApiResponseCode INTERNAL_ERROR
public static LineApiResponseCode[] values()
for (LineApiResponseCode c : LineApiResponseCode.values()) System.out.println(c);
public static LineApiResponseCode 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 null