public static enum PasswdStrength.CHAR_TYPE extends Enum<PasswdStrength.CHAR_TYPE>
Enum Constant and Description |
---|
CAPITAL_LETTER |
NUM |
OTHER_CHAR |
SMALL_LETTER |
Modifier and Type | Method and Description |
---|---|
static PasswdStrength.CHAR_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswdStrength.CHAR_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswdStrength.CHAR_TYPE NUM
public static final PasswdStrength.CHAR_TYPE SMALL_LETTER
public static final PasswdStrength.CHAR_TYPE CAPITAL_LETTER
public static final PasswdStrength.CHAR_TYPE OTHER_CHAR
public static PasswdStrength.CHAR_TYPE[] values()
for (PasswdStrength.CHAR_TYPE c : PasswdStrength.CHAR_TYPE.values()) System.out.println(c);
public static PasswdStrength.CHAR_TYPE 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 © 2024. All rights reserved.