Package de.alpharogroup.random
Enum RandomCharacters
- java.lang.Object
-
- java.lang.Enum<RandomCharacters>
-
- de.alpharogroup.random.RandomCharacters
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RandomCharacters>
public enum RandomCharacters extends java.lang.Enum<RandomCharacters>
The enumRandomCharacters
-
-
Enum Constant Summary
Enum Constants Enum Constant Description lowcaseThe lowcase.lowcaseWithNumbersThe lowcase with numbers.lowcaseWithNumbersAndSpecialThe lowcase with numbers and special.lowcaseWithUppercaseAndNumbersThe lowcase with uppercase and numbers.lowcaseWithUppercaseAndNumbersAndSpecialThe lowcase with uppercase and numbers and special.numbersThe numbers.specialThe special.uppercaseThe uppercase.uppercaseWithNumbersThe uppercase with numbers.uppercaseWithNumbersAndSpecialThe uppercase with numbers and special.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCharacters()static RandomCharactersvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
lowcase
public static final RandomCharacters lowcase
The lowcase.
-
lowcaseWithNumbers
public static final RandomCharacters lowcaseWithNumbers
The lowcase with numbers.
-
lowcaseWithNumbersAndSpecial
public static final RandomCharacters lowcaseWithNumbersAndSpecial
The lowcase with numbers and special.
-
lowcaseWithUppercaseAndNumbers
public static final RandomCharacters lowcaseWithUppercaseAndNumbers
The lowcase with uppercase and numbers.
-
lowcaseWithUppercaseAndNumbersAndSpecial
public static final RandomCharacters lowcaseWithUppercaseAndNumbersAndSpecial
The lowcase with uppercase and numbers and special.
-
numbers
public static final RandomCharacters numbers
The numbers.
-
special
public static final RandomCharacters special
The special.
-
uppercase
public static final RandomCharacters uppercase
The uppercase.
-
uppercaseWithNumbers
public static final RandomCharacters uppercaseWithNumbers
The uppercase with numbers.
-
uppercaseWithNumbersAndSpecial
public static final RandomCharacters uppercaseWithNumbersAndSpecial
The uppercase with numbers and special.
-
-
Method Detail
-
values
public static RandomCharacters[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RandomCharacters c : RandomCharacters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RandomCharacters valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getCharacters
public java.lang.String getCharacters()
-
-