Package org.apache.sysds.runtime.util
Enum LongLongDoubleHashMap.EntryType
- java.lang.Object
- 
- java.lang.Enum<LongLongDoubleHashMap.EntryType>
- 
- org.apache.sysds.runtime.util.LongLongDoubleHashMap.EntryType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<LongLongDoubleHashMap.EntryType>
 - Enclosing class:
- LongLongDoubleHashMap
 
 public static enum LongLongDoubleHashMap.EntryType extends Enum<LongLongDoubleHashMap.EntryType> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LongLongDoubleHashMap.EntryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LongLongDoubleHashMap.EntryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LONGpublic static final LongLongDoubleHashMap.EntryType LONG 
 - 
INTpublic static final LongLongDoubleHashMap.EntryType INT 
 
- 
 - 
Method Detail- 
valuespublic static LongLongDoubleHashMap.EntryType[] 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 (LongLongDoubleHashMap.EntryType c : LongLongDoubleHashMap.EntryType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LongLongDoubleHashMap.EntryType 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
 
 
- 
 
-