public enum EnumDataTypeValues extends java.lang.Enum<EnumDataTypeValues>
| Enum Constant and Description |
|---|
LIST_OF_DATA_TYPES
The server will return a list of valid DataTypes that can be used for this service on this server.
|
PARAMETER_LIMITS
The server will return its operational limits for parameters used in the List, Get, Put services.
|
SERVER_TIME_STAMP
The server will return the Server Timestamp in UTC format.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumDataTypeValues |
fromString(java.lang.String text)
Returns a
EnumNoun from the given text. |
static java.lang.String |
getList()
Returns a "printable" list of the elements' values.
|
java.lang.String |
toString()
Returns the value for the current DataType.
|
static EnumDataTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDataTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDataTypeValues LIST_OF_DATA_TYPES
public static final EnumDataTypeValues SERVER_TIME_STAMP
public static final EnumDataTypeValues PARAMETER_LIMITS
public static EnumDataTypeValues[] values()
for (EnumDataTypeValues c : EnumDataTypeValues.values()) System.out.println(c);
public static EnumDataTypeValues 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 nullpublic static EnumDataTypeValues fromString(java.lang.String text)
EnumNoun from the given text. null if the given text doesn't describes any of
the elements.text - Text to retrieve the EnumTypenull if the given text doesn't describes any of the elements.public java.lang.String toString()
toString in class java.lang.Enum<EnumDataTypeValues>public static java.lang.String getList()