public enum ResponseModeType extends Enum<ResponseModeType>
Java class for ResponseModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ResponseModeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NotRequired"/>
<enumeration value="Immediate"/>
<enumeration value="PrintEnd"/>
<enumeration value="SoundEnd"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
IMMEDIATE
The Message Response is immediate, after taking into account the request.
|
NOT_REQUIRED
The Message Response is not required, except in case of error.
|
PRINT_END
The Print Response is required at the end of print.
|
SOUND_END
The Sound Response is required at the end of play.
|
| Modifier and Type | Method and Description |
|---|---|
static ResponseModeType |
fromValue(String v)
From value response mode type.
|
String |
value()
Value string.
|
static ResponseModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseModeType NOT_REQUIRED
public static final ResponseModeType IMMEDIATE
public static final ResponseModeType PRINT_END
public static final ResponseModeType SOUND_END
public static ResponseModeType[] values()
for (ResponseModeType c : ResponseModeType.values()) System.out.println(c);
public static ResponseModeType 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 ResponseModeType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.