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