public enum MessageType extends Enum<MessageType>
Java class for MessageType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MessageType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Request"/>
<enumeration value="Response"/>
<enumeration value="Notification"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NOTIFICATION
Unsollicited notification messageType that does not require an answer.
|
REQUEST
Request messageType that requires a response, except if the request messageType mentions explicitely that a response messageType is not expected.
|
RESPONSE
Response messageType, sent to answer to a request messageType.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageType |
fromValue(String v)
From value message type.
|
String |
value()
Value string.
|
static MessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageType REQUEST
public static final MessageType RESPONSE
public static final MessageType NOTIFICATION
public static MessageType[] values()
for (MessageType c : MessageType.values()) System.out.println(c);
public static MessageType 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 MessageType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.