Package org.apache.sysds.common
Enum Types.DataType
- java.lang.Object
- 
- java.lang.Enum<Types.DataType>
- 
- org.apache.sysds.common.Types.DataType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.DataType>
 - Enclosing class:
- Types
 
 public static enum Types.DataType extends Enum<Types.DataType> Data types (tensor, matrix, scalar, frame, object, unknown).
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ENCRYPTED_CIPHERENCRYPTED_PLAINFRAMELISTMATRIXSCALARTENSORUNKNOWN
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisFrame()booleanisList()booleanisMatrix()booleanisMatrixOrFrame()booleanisScalar()booleanisTensor()booleanisUnknown()static Types.DataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Types.DataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
TENSORpublic static final Types.DataType TENSOR 
 - 
MATRIXpublic static final Types.DataType MATRIX 
 - 
SCALARpublic static final Types.DataType SCALAR 
 - 
FRAMEpublic static final Types.DataType FRAME 
 - 
LISTpublic static final Types.DataType LIST 
 - 
UNKNOWNpublic static final Types.DataType UNKNOWN 
 - 
ENCRYPTED_CIPHERpublic static final Types.DataType ENCRYPTED_CIPHER 
 - 
ENCRYPTED_PLAINpublic static final Types.DataType ENCRYPTED_PLAIN 
 
- 
 - 
Method Detail- 
valuespublic static Types.DataType[] 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 (Types.DataType c : Types.DataType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.DataType 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
 
 - 
isMatrixpublic boolean isMatrix() 
 - 
isTensorpublic boolean isTensor() 
 - 
isFramepublic boolean isFrame() 
 - 
isMatrixOrFramepublic boolean isMatrixOrFrame() 
 - 
isScalarpublic boolean isScalar() 
 - 
isListpublic boolean isList() 
 - 
isUnknownpublic boolean isUnknown() 
 
- 
 
-