Package org.apache.sysds.common
Enum Types.ValueType
- java.lang.Object
- 
- java.lang.Enum<Types.ValueType>
- 
- org.apache.sysds.common.Types.ValueType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Types.ValueType>
 - Enclosing class:
- Types
 
 public static enum Types.ValueType extends Enum<Types.ValueType> Value types (int, double, string, boolean, unknown).
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Types.ValueTypefromExternalString(String value)booleanisNumeric()booleanisPseudoNumeric()static booleanisSameTypeString(Types.ValueType vt1, Types.ValueType vt2)booleanisUnknown()StringtoExternalString()static Types.ValueTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Types.ValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UINT8public static final Types.ValueType UINT8 
 - 
FP32public static final Types.ValueType FP32 
 - 
FP64public static final Types.ValueType FP64 
 - 
INT32public static final Types.ValueType INT32 
 - 
INT64public static final Types.ValueType INT64 
 - 
BOOLEANpublic static final Types.ValueType BOOLEAN 
 - 
STRINGpublic static final Types.ValueType STRING 
 - 
UNKNOWNpublic static final Types.ValueType UNKNOWN 
 
- 
 - 
Method Detail- 
valuespublic static Types.ValueType[] 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.ValueType c : Types.ValueType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Types.ValueType 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
 
 - 
isNumericpublic boolean isNumeric() 
 - 
isUnknownpublic boolean isUnknown() 
 - 
isPseudoNumericpublic boolean isPseudoNumeric() 
 - 
toExternalStringpublic String toExternalString() 
 - 
fromExternalStringpublic static Types.ValueType fromExternalString(String value) 
 - 
isSameTypeStringpublic static boolean isSameTypeString(Types.ValueType vt1, Types.ValueType vt2) 
 
- 
 
-