public static enum PMMLArrays.ArrayType extends Enum<PMMLArrays.ArrayType>
Enum Constant and Description |
---|
integer
The array consists of java integers
|
real
The array consists of java doubles
|
string
The array consists of java strings
|
Modifier and Type | Method and Description |
---|---|
static PMMLArrays.ArrayType |
forName(String name)
Returns the array type corresponding to the given PMML name.
|
String |
pmmlName()
Returns the PMML name (differs from the enum name because "int" is a reserved word)
|
static PMMLArrays.ArrayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PMMLArrays.ArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PMMLArrays.ArrayType real
public static final PMMLArrays.ArrayType integer
public static final PMMLArrays.ArrayType string
public static PMMLArrays.ArrayType[] values()
for (PMMLArrays.ArrayType c : PMMLArrays.ArrayType.values()) System.out.println(c);
public static PMMLArrays.ArrayType 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 String pmmlName()
public static PMMLArrays.ArrayType forName(String name)
name
- the PMML nameCopyright © 2020 Actian Corporation. All rights reserved.