Package org.kie.pmml.api.enums
Enum ARRAY_TYPE
- java.lang.Object
-
- java.lang.Enum<ARRAY_TYPE>
-
- org.kie.pmml.api.enums.ARRAY_TYPE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ARRAY_TYPE>,Named
public enum ARRAY_TYPE extends java.lang.Enum<ARRAY_TYPE> implements Named
- See Also:
- PREDICATE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ARRAY_TYPEbyName(java.lang.String name)java.lang.StringgetName()java.lang.ObjectgetValue(java.lang.String rawValue)static ARRAY_TYPEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ARRAY_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT
public static final ARRAY_TYPE INT
-
STRING
public static final ARRAY_TYPE STRING
-
REAL
public static final ARRAY_TYPE REAL
-
-
Method Detail
-
values
public static ARRAY_TYPE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ARRAY_TYPE c : ARRAY_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ARRAY_TYPE valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
byName
public static ARRAY_TYPE byName(java.lang.String name)
-
getValue
public java.lang.Object getValue(java.lang.String rawValue)
-
-