public enum GlobalStatusEnumeration extends Enum<GlobalStatusEnumeration>
Java class for GlobalStatusEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GlobalStatusEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OK"/>
<enumeration value="Busy"/>
<enumeration value="Maintenance"/>
<enumeration value="Unreachable"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BUSY
The POI Terminal cannot process a request because another processing is in progress.
|
MAINTENANCE
The POI is in maintenance processing
|
OK
The POI is ready to receive and process a request
|
UNREACHABLE
The POI is unreachable or not responding
|
| Modifier and Type | Method and Description |
|---|---|
static GlobalStatusEnumeration |
fromValue(String v) |
String |
value() |
static GlobalStatusEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalStatusEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalStatusEnumeration OK
public static final GlobalStatusEnumeration BUSY
public static final GlobalStatusEnumeration MAINTENANCE
public static final GlobalStatusEnumeration UNREACHABLE
public static GlobalStatusEnumeration[] values()
for (GlobalStatusEnumeration c : GlobalStatusEnumeration.values()) System.out.println(c);
public static GlobalStatusEnumeration 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 GlobalStatusEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.