public enum StitchRequestErrorCode extends Enum<StitchRequestErrorCode>
| Enum Constant and Description |
|---|
BOOTSTRAP_ERROR |
DECODING_ERROR |
ENCODING_ERROR |
TRANSPORT_ERROR |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static StitchRequestErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StitchRequestErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StitchRequestErrorCode TRANSPORT_ERROR
public static final StitchRequestErrorCode DECODING_ERROR
public static final StitchRequestErrorCode ENCODING_ERROR
public static final StitchRequestErrorCode BOOTSTRAP_ERROR
public static StitchRequestErrorCode[] values()
for (StitchRequestErrorCode c : StitchRequestErrorCode.values()) System.out.println(c);
public static StitchRequestErrorCode 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 nullpublic String toString()
toString in class Enum<StitchRequestErrorCode>