public enum GlobalStatusType extends Enum<GlobalStatusType>
Java class for GlobalStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GlobalStatusType">
<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 GlobalStatusType |
fromValue(String v)
From value global status type.
|
String |
value()
Value string.
|
static GlobalStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalStatusType OK
public static final GlobalStatusType BUSY
public static final GlobalStatusType MAINTENANCE
public static final GlobalStatusType UNREACHABLE
public static GlobalStatusType[] values()
for (GlobalStatusType c : GlobalStatusType.values()) System.out.println(c);
public static GlobalStatusType 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 GlobalStatusType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.