Enum ColumnEncoder.EncoderType
- java.lang.Object
- 
- java.lang.Enum<ColumnEncoder.EncoderType>
- 
- org.apache.sysds.runtime.transform.encode.ColumnEncoder.EncoderType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ColumnEncoder.EncoderType>
 - Enclosing class:
- ColumnEncoder
 
 public static enum ColumnEncoder.EncoderType extends Enum<ColumnEncoder.EncoderType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BinCompositeDummycodeFeatureHashMVImputeOmitPassThroughRecode
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ColumnEncoder.EncoderTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ColumnEncoder.EncoderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Recodepublic static final ColumnEncoder.EncoderType Recode 
 - 
FeatureHashpublic static final ColumnEncoder.EncoderType FeatureHash 
 - 
PassThroughpublic static final ColumnEncoder.EncoderType PassThrough 
 - 
Binpublic static final ColumnEncoder.EncoderType Bin 
 - 
Dummycodepublic static final ColumnEncoder.EncoderType Dummycode 
 - 
Omitpublic static final ColumnEncoder.EncoderType Omit 
 - 
MVImputepublic static final ColumnEncoder.EncoderType MVImpute 
 - 
Compositepublic static final ColumnEncoder.EncoderType Composite 
 
- 
 - 
Method Detail- 
valuespublic static ColumnEncoder.EncoderType[] 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 (ColumnEncoder.EncoderType c : ColumnEncoder.EncoderType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ColumnEncoder.EncoderType 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
 
 
- 
 
-