Enum IDictionary.DictType
- java.lang.Object
-
- java.lang.Enum<IDictionary.DictType>
-
- org.apache.sysds.runtime.compress.colgroup.dictionary.IDictionary.DictType
-
- All Implemented Interfaces:
Serializable
,Comparable<IDictionary.DictType>
- Enclosing interface:
- IDictionary
public static enum IDictionary.DictType extends Enum<IDictionary.DictType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Delta
Dict
Identity
IdentitySlice
MatrixBlock
UInt8
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IDictionary.DictType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IDictionary.DictType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Delta
public static final IDictionary.DictType Delta
-
Dict
public static final IDictionary.DictType Dict
-
MatrixBlock
public static final IDictionary.DictType MatrixBlock
-
UInt8
public static final IDictionary.DictType UInt8
-
Identity
public static final IDictionary.DictType Identity
-
IdentitySlice
public static final IDictionary.DictType IdentitySlice
-
-
Method Detail
-
values
public static IDictionary.DictType[] 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 (IDictionary.DictType c : IDictionary.DictType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IDictionary.DictType 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
-
-