public enum DMEVariableType extends Enum<DMEVariableType>
DMEVariableType enumeration:
Variable Type
Enum Constant and Description |
---|
BOOLEAN
Boolean: Boolean (java.lang.Boolean)
|
NUMBER
Number: Number (java.lang.Long)
|
STRING
String: String (java.lang.String)
|
Modifier and Type | Method and Description |
---|---|
Class<?> |
getJavaType() |
static DMEVariableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DMEVariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DMEVariableType BOOLEAN
public static final DMEVariableType NUMBER
public static final DMEVariableType STRING
public static DMEVariableType[] values()
for (DMEVariableType c : DMEVariableType.values()) System.out.println(c);
public static DMEVariableType 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 Class<?> getJavaType()
Copyright © 2016. All rights reserved.