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 © 2025. All rights reserved.