Enum AColGroup.CompressionType
- java.lang.Object
- 
- java.lang.Enum<AColGroup.CompressionType>
- 
- org.apache.sysds.runtime.compress.colgroup.AColGroup.CompressionType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AColGroup.CompressionType>
 - Enclosing class:
- AColGroup
 
 public static enum AColGroup.CompressionType extends Enum<AColGroup.CompressionType> Public super types of compression ColGroups supported
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AColGroup.CompressionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AColGroup.CompressionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UNCOMPRESSEDpublic static final AColGroup.CompressionType UNCOMPRESSED 
 - 
RLEpublic static final AColGroup.CompressionType RLE 
 - 
OLEpublic static final AColGroup.CompressionType OLE 
 - 
DDCpublic static final AColGroup.CompressionType DDC 
 - 
CONSTpublic static final AColGroup.CompressionType CONST 
 - 
EMPTYpublic static final AColGroup.CompressionType EMPTY 
 - 
SDCpublic static final AColGroup.CompressionType SDC 
 - 
SDCFORpublic static final AColGroup.CompressionType SDCFOR 
 - 
DDCFORpublic static final AColGroup.CompressionType DDCFOR 
 - 
DeltaDDCpublic static final AColGroup.CompressionType DeltaDDC 
 
- 
 - 
Method Detail- 
valuespublic static AColGroup.CompressionType[] 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 (AColGroup.CompressionType c : AColGroup.CompressionType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AColGroup.CompressionType 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
 
 
- 
 
-