public static enum SoftwareState.STATE extends java.lang.Enum<SoftwareState.STATE>
Enum Constant and Description |
---|
LAST_VERSION
Software is last version up-to-date
|
OLD_VERSION
Software is an old version
|
SOAP_ERROR
An error occurs during soap request
|
UNKNOWN_SOFTWARE
The software is unknown for soap web service
|
UNKNOWN_VERSION
The version is unknown for soap web service
|
Modifier and Type | Method and Description |
---|---|
static SoftwareState.STATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SoftwareState.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoftwareState.STATE LAST_VERSION
public static final SoftwareState.STATE OLD_VERSION
public static final SoftwareState.STATE UNKNOWN_VERSION
public static final SoftwareState.STATE UNKNOWN_SOFTWARE
public static final SoftwareState.STATE SOAP_ERROR
public static SoftwareState.STATE[] values()
for (SoftwareState.STATE c : SoftwareState.STATE.values()) System.out.println(c);
public static SoftwareState.STATE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null