public enum TransportError extends Enum<TransportError>
Enum Constant and Description |
---|
FailedSendMessage
Error during send message procedure (special type)
|
Internal
Internal error (network layer exceptions)
|
NetWorkError
Network error (io exceptions)
|
Overload
Overload errors (overload netowrk queues)
|
ReceivedBrokenMessage
Received broken message (special type)
|
Modifier and Type | Method and Description |
---|---|
static TransportError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransportError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportError Internal
public static final TransportError Overload
public static final TransportError FailedSendMessage
public static final TransportError ReceivedBrokenMessage
public static final TransportError NetWorkError
public static TransportError[] values()
for (TransportError c : TransportError.values()) System.out.println(c);
public static TransportError 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 © 2016. All Rights Reserved.