public enum RandomCharacters extends Enum<RandomCharacters>
RandomCharacters| Enum Constant and Description |
|---|
lowcase
The lowcase.
|
lowcaseWithNumbers
The lowcase with numbers.
|
lowcaseWithNumbersAndSpecial
The lowcase with numbers and special.
|
lowcaseWithUppercaseAndNumbers
The lowcase with uppercase and numbers.
|
lowcaseWithUppercaseAndNumbersAndSpecial
The lowcase with uppercase and numbers and special.
|
numbers
The numbers.
|
special
The special.
|
uppercase
The uppercase.
|
uppercaseWithNumbers
The uppercase with numbers.
|
uppercaseWithNumbersAndSpecial
The uppercase with numbers and special.
|
| Modifier and Type | Method and Description |
|---|---|
static RandomCharacters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RandomCharacters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomCharacters lowcase
public static final RandomCharacters lowcaseWithNumbers
public static final RandomCharacters lowcaseWithNumbersAndSpecial
public static final RandomCharacters lowcaseWithUppercaseAndNumbers
public static final RandomCharacters lowcaseWithUppercaseAndNumbersAndSpecial
public static final RandomCharacters numbers
public static final RandomCharacters special
public static final RandomCharacters uppercase
public static final RandomCharacters uppercaseWithNumbers
public static final RandomCharacters uppercaseWithNumbersAndSpecial
public static RandomCharacters[] values()
for (RandomCharacters c : RandomCharacters.values()) System.out.println(c);
public static RandomCharacters 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 © 2015–2019 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.