|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DataType>
org.android.activityminer.pmml.model.DataType
public enum DataType
The data type
Enum Constant Summary | |
---|---|
BOOLEAN
boolean |
|
DATE
date |
|
DATETIME
dateTime |
|
DOUBLE
double |
|
FLOAT
float |
|
INTEGER
integer |
|
STRING
string |
|
TIME
time |
|
TIMESECONDS
time in seconds |
Method Summary | |
---|---|
String |
toString()
|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DataType STRING
public static final DataType INTEGER
public static final DataType FLOAT
public static final DataType DOUBLE
public static final DataType BOOLEAN
public static final DataType DATE
public static final DataType TIME
public static final DataType DATETIME
public static final DataType TIMESECONDS
Method Detail |
---|
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic final String toString()
toString
in class Enum<DataType>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |