public enum ServiceChannelErrorCode extends Enum<ServiceChannelErrorCode>
| Enum Constant and Description |
|---|
CONTENT_NEGOTIATION_FAILED |
TOO_MANY_OPEN_CHANNELS_FOR_SESSION |
TOO_MANY_OPEN_SESSIONS |
UNKNOWN_CHANNEL_ID |
UNKNOWN_ENDPOINT_ADDRESS |
| Modifier and Type | Method and Description |
|---|---|
static ServiceChannelErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceChannelErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceChannelErrorCode TOO_MANY_OPEN_SESSIONS
public static final ServiceChannelErrorCode TOO_MANY_OPEN_CHANNELS_FOR_SESSION
public static final ServiceChannelErrorCode UNKNOWN_ENDPOINT_ADDRESS
public static final ServiceChannelErrorCode CONTENT_NEGOTIATION_FAILED
public static final ServiceChannelErrorCode UNKNOWN_CHANNEL_ID
public static ServiceChannelErrorCode[] values()
for (ServiceChannelErrorCode c : ServiceChannelErrorCode.values()) System.out.println(c);
public static ServiceChannelErrorCode 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 © 2005–2018 Oracle Corporation. All rights reserved.