public enum ValueClass extends java.lang.Enum<ValueClass> implements ValueEnum
| Enum Constant and Description | 
|---|
| CATEGORICALA fixed list of categories or nominal values. | 
| GENERALAny kind of data. | 
| INTERVALStrictly numerical data. | 
| ORDINALAn extension of CATEGORICAL, where the categories are also strictly ordered. | 
| RATIOAn extension of INTERVAL, where 0 means the absence of something, and ratios between values are meaningful. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static ValueClass | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ValueClass[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ValueClass GENERAL
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "general".
public static final ValueClass CATEGORICAL
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "categorical".
public static final ValueClass ORDINAL
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "ordinal".
public static final ValueClass INTERVAL
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "interval".
public static final ValueClass RATIO
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "ratio".
public static ValueClass[] values()
for (ValueClass c : ValueClass.values()) System.out.println(c);
public static ValueClass valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null