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