public enum PasswordCredentialHashAlgorithm extends Enum<PasswordCredentialHashAlgorithm>
Enum Constant and Description |
---|
BCRYPT |
MD5 |
SDK_UNKNOWN |
SHA_1 |
SHA_256 |
SHA_512 |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PasswordCredentialHashAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswordCredentialHashAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordCredentialHashAlgorithm BCRYPT
public static final PasswordCredentialHashAlgorithm SHA_512
public static final PasswordCredentialHashAlgorithm SHA_256
public static final PasswordCredentialHashAlgorithm SHA_1
public static final PasswordCredentialHashAlgorithm MD5
public static final PasswordCredentialHashAlgorithm SDK_UNKNOWN
public static PasswordCredentialHashAlgorithm[] values()
for (PasswordCredentialHashAlgorithm c : PasswordCredentialHashAlgorithm.values()) System.out.println(c);
public static PasswordCredentialHashAlgorithm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<PasswordCredentialHashAlgorithm>
Copyright © 2017–2023 Okta. All rights reserved.