public static enum PasswdStrength.PASSWD_LEVEL extends Enum<PasswdStrength.PASSWD_LEVEL>
Enum Constant and Description |
---|
EASY |
EXTREMELY_STRONG |
MIDIUM |
STRONG |
VERY_STRONG |
Modifier and Type | Method and Description |
---|---|
static PasswdStrength.PASSWD_LEVEL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswdStrength.PASSWD_LEVEL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswdStrength.PASSWD_LEVEL EASY
public static final PasswdStrength.PASSWD_LEVEL MIDIUM
public static final PasswdStrength.PASSWD_LEVEL STRONG
public static final PasswdStrength.PASSWD_LEVEL VERY_STRONG
public static final PasswdStrength.PASSWD_LEVEL EXTREMELY_STRONG
public static PasswdStrength.PASSWD_LEVEL[] values()
for (PasswdStrength.PASSWD_LEVEL c : PasswdStrength.PASSWD_LEVEL.values()) System.out.println(c);
public static PasswdStrength.PASSWD_LEVEL 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.