public static enum APIUtils.DISCRETIZATION extends java.lang.Enum<APIUtils.DISCRETIZATION>
Enum Constant and Description |
---|
DECISION_TREE |
DERIVATIVE |
EQUAL_DISTANCE |
EQUAL_FREQUENCY |
KMEANS |
NORMALIZED_EQUAL_DISTANCE |
R2_GENETIC_OPTIMIZATION |
Modifier and Type | Method and Description |
---|---|
boolean |
canIsolateZero() |
boolean |
canUseLog() |
boolean |
isBiVariate() |
boolean |
isUniVariate() |
boolean |
needTarget() |
static APIUtils.DISCRETIZATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIUtils.DISCRETIZATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIUtils.DISCRETIZATION DECISION_TREE
public static final APIUtils.DISCRETIZATION R2_GENETIC_OPTIMIZATION
public static final APIUtils.DISCRETIZATION KMEANS
public static final APIUtils.DISCRETIZATION NORMALIZED_EQUAL_DISTANCE
public static final APIUtils.DISCRETIZATION DERIVATIVE
public static final APIUtils.DISCRETIZATION EQUAL_FREQUENCY
public static final APIUtils.DISCRETIZATION EQUAL_DISTANCE
public static APIUtils.DISCRETIZATION[] values()
for (APIUtils.DISCRETIZATION c : APIUtils.DISCRETIZATION.values()) System.out.println(c);
public static APIUtils.DISCRETIZATION 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 nullpublic boolean canUseLog()
public boolean canIsolateZero()
public boolean needTarget()
public boolean isUniVariate()
public boolean isBiVariate()