public enum WeakSecretError extends Enum<WeakSecretError>
| Enum Constant and Description |
|---|
DEFAULT
Secret is the Hazelcast default
|
DICT_WORD
Secret is a dictionary word
|
MIN_LEN
Secret doesn't meet the minimum length requirements
|
NO_ALPHA
Secret is not using alphabetic characters
|
NO_MIXED_CASE
Secret is not using mixed case characters
|
NO_NUMERAL
Secret is not using numerals
|
NO_SPECIAL_CHARS
Secret is not using special character
|
| Modifier and Type | Method and Description |
|---|---|
static WeakSecretError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeakSecretError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeakSecretError DEFAULT
public static final WeakSecretError MIN_LEN
public static final WeakSecretError NO_MIXED_CASE
public static final WeakSecretError NO_ALPHA
public static final WeakSecretError NO_NUMERAL
public static final WeakSecretError NO_SPECIAL_CHARS
public static final WeakSecretError DICT_WORD
public static WeakSecretError[] values()
for (WeakSecretError c : WeakSecretError.values()) System.out.println(c);
public static WeakSecretError 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 nullCopyright © 2020 Hazelcast, Inc.. All Rights Reserved.