Enum Impute.ImputationMethod
- java.lang.Object
-
- java.lang.Enum<Impute.ImputationMethod>
-
- org.ujmp.core.doublematrix.calculation.general.missingvalues.Impute.ImputationMethod
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Impute.ImputationMethod>
- Enclosing class:
- Impute
public static enum Impute.ImputationMethod extends java.lang.Enum<Impute.ImputationMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BPCA
ColumnMean
EM
EMimputeArray
EMimputeGene
KNN
LSimputeAdaptive
LSimputeArray
LSimputeCombined
LSimputeGene
Regression
RowMean
Zero
-
Constructor Summary
Constructors Modifier Constructor Description private
ImputationMethod()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Impute.ImputationMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Impute.ImputationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Zero
public static final Impute.ImputationMethod Zero
-
RowMean
public static final Impute.ImputationMethod RowMean
-
ColumnMean
public static final Impute.ImputationMethod ColumnMean
-
Regression
public static final Impute.ImputationMethod Regression
-
KNN
public static final Impute.ImputationMethod KNN
-
EM
public static final Impute.ImputationMethod EM
-
BPCA
public static final Impute.ImputationMethod BPCA
-
EMimputeGene
public static final Impute.ImputationMethod EMimputeGene
-
EMimputeArray
public static final Impute.ImputationMethod EMimputeArray
-
LSimputeGene
public static final Impute.ImputationMethod LSimputeGene
-
LSimputeArray
public static final Impute.ImputationMethod LSimputeArray
-
LSimputeCombined
public static final Impute.ImputationMethod LSimputeCombined
-
LSimputeAdaptive
public static final Impute.ImputationMethod LSimputeAdaptive
-
-
Method Detail
-
values
public static Impute.ImputationMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Impute.ImputationMethod c : Impute.ImputationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Impute.ImputationMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-