public static enum Password.Scheme extends java.lang.Enum<Password.Scheme>
| Enum Constant and Description |
|---|
ALPHA |
ALPHA_MIXED_CASE |
ALPHA_NUMERIC |
ALPHA_NUMERIC_MIXED_CASE |
ALPHA_NUMERIC_MIXED_CASE_SYMBOLS |
ALPHA_NUMERIC_SYMBOLS |
ANY |
NUMERIC |
| Modifier and Type | Method and Description |
|---|---|
static Password.Scheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Password.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Password.Scheme ANY
public static final Password.Scheme ALPHA
public static final Password.Scheme ALPHA_MIXED_CASE
public static final Password.Scheme NUMERIC
public static final Password.Scheme ALPHA_NUMERIC
public static final Password.Scheme ALPHA_NUMERIC_MIXED_CASE
public static final Password.Scheme ALPHA_NUMERIC_SYMBOLS
public static final Password.Scheme ALPHA_NUMERIC_MIXED_CASE_SYMBOLS
public static Password.Scheme[] values()
for (Password.Scheme c : Password.Scheme.values()) System.out.println(c);
public static Password.Scheme 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