public enum DiscretizationType extends Enum<DiscretizationType>
| Enum Constant and Description |
|---|
CATEGORICAL
Categorical - unique or custom discretizations
|
NUMERIC
Numericals - a range gets "shrunken" to a smaller range or value
|
| Modifier and Type | Method and Description |
|---|---|
static DiscretizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscretizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscretizationType CATEGORICAL
public static final DiscretizationType NUMERIC
public static DiscretizationType[] values()
for (DiscretizationType c : DiscretizationType.values()) System.out.println(c);
public static DiscretizationType 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 © 2019 viadee Unternehmensberatung AG. All rights reserved.