Enum ArrayFactory.FrameArrayType
- java.lang.Object
-
- java.lang.Enum<ArrayFactory.FrameArrayType>
-
- org.apache.sysds.runtime.frame.data.columns.ArrayFactory.FrameArrayType
-
- All Implemented Interfaces:
Serializable
,Comparable<ArrayFactory.FrameArrayType>
- Enclosing interface:
- ArrayFactory
public static enum ArrayFactory.FrameArrayType extends Enum<ArrayFactory.FrameArrayType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArrayFactory.FrameArrayType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ArrayFactory.FrameArrayType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final ArrayFactory.FrameArrayType STRING
-
BOOLEAN
public static final ArrayFactory.FrameArrayType BOOLEAN
-
BITSET
public static final ArrayFactory.FrameArrayType BITSET
-
INT32
public static final ArrayFactory.FrameArrayType INT32
-
INT64
public static final ArrayFactory.FrameArrayType INT64
-
FP32
public static final ArrayFactory.FrameArrayType FP32
-
FP64
public static final ArrayFactory.FrameArrayType FP64
-
CHARACTER
public static final ArrayFactory.FrameArrayType CHARACTER
-
RAGGED
public static final ArrayFactory.FrameArrayType RAGGED
-
OPTIONAL
public static final ArrayFactory.FrameArrayType OPTIONAL
-
DDC
public static final ArrayFactory.FrameArrayType DDC
-
HASH64
public static final ArrayFactory.FrameArrayType HASH64
-
HASH32
public static final ArrayFactory.FrameArrayType HASH32
-
-
Method Detail
-
values
public static ArrayFactory.FrameArrayType[] 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 (ArrayFactory.FrameArrayType c : ArrayFactory.FrameArrayType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArrayFactory.FrameArrayType 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
-
-