Package org.apache.sysds.utils
Enum Hash.HashType
- java.lang.Object
- 
- java.lang.Enum<Hash.HashType>
- 
- org.apache.sysds.utils.Hash.HashType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Hash.HashType>
 - Enclosing class:
- Hash
 
 public static enum Hash.HashType extends Enum<Hash.HashType> Available Hashing techniques
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ExpHashLinearHashStandardJava
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Hash.HashTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Hash.HashType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
StandardJavapublic static final Hash.HashType StandardJava 
 - 
LinearHashpublic static final Hash.HashType LinearHash 
 - 
ExpHashpublic static final Hash.HashType ExpHash 
 
- 
 - 
Method Detail- 
valuespublic static Hash.HashType[] 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 (Hash.HashType c : Hash.HashType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Hash.HashType 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
 
 
- 
 
-