@CodingStyleguideUnaware public enum TCPayloadType extends Enum<TCPayloadType>
Java class for TCPayloadType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TCPayloadType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Request"/>
<enumeration value="Response"/>
<enumeration value="ErrorResponse"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ERROR_RESPONSE |
REQUEST |
RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
static TCPayloadType |
fromValue(String v) |
String |
value() |
static TCPayloadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TCPayloadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TCPayloadType REQUEST
public static final TCPayloadType RESPONSE
public static final TCPayloadType ERROR_RESPONSE
public static TCPayloadType[] values()
for (TCPayloadType c : TCPayloadType.values()) System.out.println(c);
public static TCPayloadType 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 value()
public static TCPayloadType fromValue(String v)
Copyright © 2020 toop.eu. All rights reserved.