Package com.uppaal.engine
Enum KeyValueProtocol.Service
- java.lang.Object
-
- java.lang.Enum<KeyValueProtocol.Service>
-
- com.uppaal.engine.KeyValueProtocol.Service
-
- All Implemented Interfaces:
Serializable
,Comparable<KeyValueProtocol.Service>
- Enclosing class:
- KeyValueProtocol
protected static enum KeyValueProtocol.Service extends Enum<KeyValueProtocol.Service>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GET_INITIAL_STATE
GET_OPTIONS_INFO
GET_SYSTEM_INFO
GET_TRANSITIONS
MODELCHECK
MODELCHECKFROMSTATE
NEW_XML_SYSTEM
QUIT
SET_OPTIONS
UPPAAL_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyValueProtocol.Service
valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyValueProtocol.Service[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_INITIAL_STATE
public static final KeyValueProtocol.Service GET_INITIAL_STATE
-
GET_OPTIONS_INFO
public static final KeyValueProtocol.Service GET_OPTIONS_INFO
-
GET_SYSTEM_INFO
public static final KeyValueProtocol.Service GET_SYSTEM_INFO
-
GET_TRANSITIONS
public static final KeyValueProtocol.Service GET_TRANSITIONS
-
MODELCHECK
public static final KeyValueProtocol.Service MODELCHECK
-
MODELCHECKFROMSTATE
public static final KeyValueProtocol.Service MODELCHECKFROMSTATE
-
NEW_XML_SYSTEM
public static final KeyValueProtocol.Service NEW_XML_SYSTEM
-
QUIT
public static final KeyValueProtocol.Service QUIT
-
UPPAAL_VERSION
public static final KeyValueProtocol.Service UPPAAL_VERSION
-
SET_OPTIONS
public static final KeyValueProtocol.Service SET_OPTIONS
-
-
Method Detail
-
values
public static KeyValueProtocol.Service[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyValueProtocol.Service c : KeyValueProtocol.Service.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyValueProtocol.Service valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-