public enum ResponseModeEnumeration extends Enum<ResponseModeEnumeration>
Java class for ResponseModeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ResponseModeEnumeration">
<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 ResponseModeEnumeration |
fromValue(String v) |
String |
value() |
static ResponseModeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseModeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseModeEnumeration NOT_REQUIRED
public static final ResponseModeEnumeration IMMEDIATE
public static final ResponseModeEnumeration PRINT_END
public static final ResponseModeEnumeration SOUND_END
public static ResponseModeEnumeration[] values()
for (ResponseModeEnumeration c : ResponseModeEnumeration.values()) System.out.println(c);
public static ResponseModeEnumeration 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 ResponseModeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.