public static enum StreamNegotiator.NegotiationError extends Enum<StreamNegotiator.NegotiationError>
| Enum Constant and Description |
|---|
AUTHENTICATION_FAILED |
ERROR |
NEGOTIATION_INTERUPTED |
RESOURCE_BIND_FAILED |
STREAM_ALREADY_OPEN |
STREAM_CLOSED |
STREAM_ERROR |
TIME_OUT |
TLS_FAILURE |
| Modifier and Type | Method and Description |
|---|---|
static StreamNegotiator.NegotiationError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamNegotiator.NegotiationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamNegotiator.NegotiationError TIME_OUT
public static final StreamNegotiator.NegotiationError AUTHENTICATION_FAILED
public static final StreamNegotiator.NegotiationError TLS_FAILURE
public static final StreamNegotiator.NegotiationError RESOURCE_BIND_FAILED
public static final StreamNegotiator.NegotiationError STREAM_CLOSED
public static final StreamNegotiator.NegotiationError STREAM_ERROR
public static final StreamNegotiator.NegotiationError NEGOTIATION_INTERUPTED
public static final StreamNegotiator.NegotiationError STREAM_ALREADY_OPEN
public static final StreamNegotiator.NegotiationError ERROR
public static StreamNegotiator.NegotiationError[] values()
for (StreamNegotiator.NegotiationError c : StreamNegotiator.NegotiationError.values()) System.out.println(c);
public static StreamNegotiator.NegotiationError 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 © 2019. All rights reserved.