public static enum SubstanceSlices.PasswordStrength extends java.lang.Enum<SubstanceSlices.PasswordStrength>
| Enum Constant | Description |
|---|---|
MEDIUM |
Medium strength.
|
STRONG |
Strong strength.
|
WEAK |
Weak strength.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SubstanceSlices.PasswordStrength |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceSlices.PasswordStrength[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceSlices.PasswordStrength WEAK
public static final SubstanceSlices.PasswordStrength MEDIUM
public static final SubstanceSlices.PasswordStrength STRONG
public static SubstanceSlices.PasswordStrength[] values()
for (SubstanceSlices.PasswordStrength c : SubstanceSlices.PasswordStrength.values()) System.out.println(c);
public static SubstanceSlices.PasswordStrength valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null