|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PMMLArrayType>
org.knime.base.node.mine.decisiontree2.PMMLArrayType
public enum PMMLArrayType
Contains the different data types an PMML Array element can hold.
| Enum Constant Summary | |
|---|---|
INT
Integer type. |
|
REAL
Double type. |
|
STRING
String type. |
|
| Method Summary | |
|---|---|
static PMMLArrayType |
get(String represent)
Returns the corresponding array type for the passed representation. |
String |
toString()
|
static PMMLArrayType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PMMLArrayType[] |
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 PMMLArrayType INT
public static final PMMLArrayType REAL
public static final PMMLArrayType STRING
| Method Detail |
|---|
public static PMMLArrayType[] values()
for (PMMLArrayType c : PMMLArrayType.values()) System.out.println(c);
public static PMMLArrayType 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 String toString()
toString in class Enum<PMMLArrayType>
public static PMMLArrayType get(String represent)
throws InstantiationException
represent - the representation to find the array type for
InstantiationException - - if no such array type exists
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||