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 Summary
Enum Constants Enum Constant Description CONSTANT
GLOBAL_MEAN
GLOBAL_MODE
INVALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncoderMVImpute.MVMethod
valueOf(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
-
INVALID
public static final EncoderMVImpute.MVMethod INVALID
-
GLOBAL_MEAN
public static final EncoderMVImpute.MVMethod GLOBAL_MEAN
-
GLOBAL_MODE
public static final EncoderMVImpute.MVMethod GLOBAL_MODE
-
CONSTANT
public static final EncoderMVImpute.MVMethod CONSTANT
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-