|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Options>
org.hackystat.sensor.xmldata.option.Options
public enum Options
The enumeration of options that have can have associated objects. Each option can be mapped to other objects during the processing phase of options and be retrieved by using each option in this class as a key.
Enum Constant Summary | |
---|---|
MULTI_SHELL
The option set when the user requests to send data using muliple sensorshell instances. |
|
RESOURCE
The option set when all entries sent by this sensor belongs to the same specified resource. |
|
SDT
The option set when specifying the SensorDataType. |
|
SET_RUNTIME
The option set when the user requests to send data as a batch, which means that all data instances have the same runtime. |
|
UNIQUE_TSTAMP
The option set when specifying unique timestamps found in the sensor data file. |
|
VERBOSE
The option set when running in verbose mode. |
Method Summary | |
---|---|
static Options |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Options[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Options VERBOSE
public static final Options SDT
public static final Options UNIQUE_TSTAMP
public static final Options MULTI_SHELL
public static final Options SET_RUNTIME
public static final Options RESOURCE
Method Detail |
---|
public static Options[] values()
for (Options c : Options.values()) System.out.println(c);
public static Options 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |