public enum ColumnValueType extends Enum<ColumnValueType>
| Enum Constant and Description | 
|---|
INDEX
The column contains the zero based index of a discrete variable state. 
 | 
NAME
The column contains the name of a discrete variable state. 
 | 
VALUE
The column contains the value of a continuous variable or a value to match to a discrete  
State.getValue(). | 
| Modifier and Type | Method and Description | 
|---|---|
static ColumnValueType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ColumnValueType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ColumnValueType VALUE
State.getValue().
 
  If a variable is discretized, this option can be used to match continuous values to the correct discrete Interval in a State.getValue().public static final ColumnValueType INDEX
public static final ColumnValueType NAME
public static ColumnValueType[] values()
for (ColumnValueType c : ColumnValueType.values()) System.out.println(c);
public static ColumnValueType 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 nullCopyright © 2021. All rights reserved.