org.ujmp.core.doublematrix.calculation.general.missingvalues
Enum Impute.ImputationMethod

java.lang.Object
  extended by java.lang.Enum<Impute.ImputationMethod>
      extended by org.ujmp.core.doublematrix.calculation.general.missingvalues.Impute.ImputationMethod
All Implemented Interfaces:
Serializable, Comparable<Impute.ImputationMethod>
Enclosing class:
Impute

public static enum Impute.ImputationMethod
extends Enum<Impute.ImputationMethod>


Enum Constant Summary
BPCA
           
ColumnMean
           
EM
           
EMimputeArray
           
EMimputeGene
           
KNN
           
LSimputeAdaptive
           
LSimputeArray
           
LSimputeCombined
           
LSimputeGene
           
Regression
           
RowMean
           
Zero
           
 
Method Summary
static Impute.ImputationMethod valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010. All Rights Reserved.