Enum EncoderMVImpute.MVMethod
- java.lang.Object
- 
- java.lang.Enum<EncoderMVImpute.MVMethod>
- 
- org.apache.sysds.runtime.transform.encode.EncoderMVImpute.MVMethod
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<EncoderMVImpute.MVMethod>
 - Enclosing class:
- EncoderMVImpute
 
 public static enum EncoderMVImpute.MVMethod extends Enum<EncoderMVImpute.MVMethod> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONSTANTGLOBAL_MEANGLOBAL_MODEINVALID
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EncoderMVImpute.MVMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static EncoderMVImpute.MVMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INVALIDpublic static final EncoderMVImpute.MVMethod INVALID 
 - 
GLOBAL_MEANpublic static final EncoderMVImpute.MVMethod GLOBAL_MEAN 
 - 
GLOBAL_MODEpublic static final EncoderMVImpute.MVMethod GLOBAL_MODE 
 - 
CONSTANTpublic static final EncoderMVImpute.MVMethod CONSTANT 
 
- 
 - 
Method Detail- 
valuespublic static EncoderMVImpute.MVMethod[] 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 (EncoderMVImpute.MVMethod c : EncoderMVImpute.MVMethod.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static EncoderMVImpute.MVMethod 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
 
 
- 
 
-