public enum GatewayError extends java.lang.Enum<GatewayError>
| Enum Constant and Description |
|---|
DUPLICATE_ACCEPTOR |
DUPLICATE_LIBRARY_ID |
DUPLICATE_SESSION |
EXCEPTION |
INVALID_CONFIGURATION |
NULL_VAL
To be used to represent not present or null.
|
UNABLE_TO_CONNECT |
UNABLE_TO_LOGON |
UNKNOWN_LIBRARY |
UNKNOWN_SESSION |
| Modifier and Type | Method and Description |
|---|---|
static GatewayError |
get(int value)
Lookup the enum value representing the value.
|
int |
value()
The raw encoded value in the Java type representation.
|
static GatewayError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GatewayError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GatewayError EXCEPTION
public static final GatewayError DUPLICATE_SESSION
public static final GatewayError UNABLE_TO_CONNECT
public static final GatewayError UNKNOWN_LIBRARY
public static final GatewayError DUPLICATE_LIBRARY_ID
public static final GatewayError DUPLICATE_ACCEPTOR
public static final GatewayError UNKNOWN_SESSION
public static final GatewayError UNABLE_TO_LOGON
public static final GatewayError INVALID_CONFIGURATION
public static final GatewayError NULL_VAL
public static GatewayError[] values()
for (GatewayError c : GatewayError.values()) System.out.println(c);
public static GatewayError 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 int value()
public static GatewayError get(int value)
value - encoded to be looked up.Copyright © 2015-2022 Real Logic Limited. All Rights Reserved.