public enum BEErrorCode extends java.lang.Enum<BEErrorCode>
Enum Constant and Description |
---|
GRAPH_ERROR
Error reading the graph protocol buffer.
|
MAP_ERROR
Error initialising the Map.
|
NETWORK_ERROR
Network error talking to Beco servers
|
NOT_AUTHENTICATED
The session has not been authenticated.
|
UNAUTHORIZED
The application is not authorized to use the Beco SDK Platform.
|
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static BEErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BEErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BEErrorCode UNAUTHORIZED
public static final BEErrorCode NETWORK_ERROR
public static final BEErrorCode NOT_AUTHENTICATED
public static final BEErrorCode GRAPH_ERROR
public static final BEErrorCode MAP_ERROR
public static final BEErrorCode UNKNOWN
public static BEErrorCode[] values()
for (BEErrorCode c : BEErrorCode.values()) System.out.println(c);
public static BEErrorCode 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