public enum MissingValuesPolicy extends Enum<MissingValuesPolicy>
Enum Constant and Description |
---|
CEIL
Sets the contribution of variables (markers/feature)
with missing values to the maximum attainable contribution.
|
FLOOR
Sets the contribution of variables (markers/features)
with missing values to zero.
|
Modifier and Type | Method and Description |
---|---|
static MissingValuesPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MissingValuesPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MissingValuesPolicy FLOOR
public static final MissingValuesPolicy CEIL
public static MissingValuesPolicy[] values()
for (MissingValuesPolicy c : MissingValuesPolicy.values()) System.out.println(c);
public static MissingValuesPolicy 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 © 2017. All rights reserved.