public static enum SoftOathSettings.OathHashAlgorithm extends java.lang.Enum<SoftOathSettings.OathHashAlgorithm>
| Enum Constant and Description | 
|---|
SHA1
SHA1 hash algorithm. 
 | 
SHA256
SHA256 hash algorithm. 
 | 
SHA512
SHA512 hash algorithm. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getAlgo()  | 
static SoftOathSettings.OathHashAlgorithm | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SoftOathSettings.OathHashAlgorithm[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SoftOathSettings.OathHashAlgorithm SHA1
public static final SoftOathSettings.OathHashAlgorithm SHA256
public static final SoftOathSettings.OathHashAlgorithm SHA512
public static SoftOathSettings.OathHashAlgorithm[] values()
for (SoftOathSettings.OathHashAlgorithm c : SoftOathSettings.OathHashAlgorithm.values()) System.out.println(c);
public static SoftOathSettings.OathHashAlgorithm valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getAlgo()