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