Package io.github.astrapi69.random
Enum RandomCharacters
- java.lang.Object
-
- java.lang.Enum<RandomCharacters>
-
- io.github.astrapi69.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 escapeSequences
The uppercase.escapeSequencesWithWhitespace
The escape sequences and white space.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.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
BRACKETS_CHAR
The bracket charactersstatic java.lang.String
ESCAPE_QUOTATION_MARK_CHARACTERS
The quotation marks charactersstatic java.lang.String
ESCAPE_SEQUENCES
All escape sequences charactersstatic java.lang.String
ESCAPE_SEQUENCES_CHARS
All escape sequences and white space charactersstatic java.lang.String
LOWCASECHARS
The alphabet-characters in lower case.static java.lang.String
MATH_OPERATOR_CHAR
The plus and minus charactersstatic java.lang.String
MINUS_CHAR
The minus characterstatic java.lang.String
NUMBERS
All digits.static java.lang.String
OTHER_SPECIALCHARS
All other special charactersstatic java.lang.String
PLUS_CHAR
The plus characterstatic java.lang.String
QUOTATION_MARK_CHARACTERS
The quotation marks charactersstatic java.lang.String
SLASH_CHAR
The slash characterstatic java.lang.String
SPECIALCHARS
All special charactersstatic java.lang.String
UNDERSCORE_CHAR
The underscore characterstatic java.lang.String
WHITE_SPACE_CHAR
The white space character
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCharacters()
static RandomCharacters
valueOf(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.
-
escapeSequences
public static final RandomCharacters escapeSequences
The uppercase.
-
escapeSequencesWithWhitespace
public static final RandomCharacters escapeSequencesWithWhitespace
The escape sequences and white space.
-
uppercaseWithNumbersAndSpecial
public static final RandomCharacters uppercaseWithNumbersAndSpecial
The uppercase with numbers and special.
-
-
Field Detail
-
LOWCASECHARS
public static final java.lang.String LOWCASECHARS
The alphabet-characters in lower case.- See Also:
- Constant Field Values
-
NUMBERS
public static final java.lang.String NUMBERS
All digits.- See Also:
- Constant Field Values
-
SPECIALCHARS
public static final java.lang.String SPECIALCHARS
All special characters- See Also:
- Constant Field Values
-
WHITE_SPACE_CHAR
public static final java.lang.String WHITE_SPACE_CHAR
The white space character- See Also:
- Constant Field Values
-
BRACKETS_CHAR
public static final java.lang.String BRACKETS_CHAR
The bracket characters- See Also:
- Constant Field Values
-
UNDERSCORE_CHAR
public static final java.lang.String UNDERSCORE_CHAR
The underscore character- See Also:
- Constant Field Values
-
SLASH_CHAR
public static final java.lang.String SLASH_CHAR
The slash character- See Also:
- Constant Field Values
-
PLUS_CHAR
public static final java.lang.String PLUS_CHAR
The plus character- See Also:
- Constant Field Values
-
MINUS_CHAR
public static final java.lang.String MINUS_CHAR
The minus character- See Also:
- Constant Field Values
-
MATH_OPERATOR_CHAR
public static final java.lang.String MATH_OPERATOR_CHAR
The plus and minus characters- See Also:
- Constant Field Values
-
OTHER_SPECIALCHARS
public static final java.lang.String OTHER_SPECIALCHARS
All other special characters- See Also:
- Constant Field Values
-
ESCAPE_QUOTATION_MARK_CHARACTERS
public static final java.lang.String ESCAPE_QUOTATION_MARK_CHARACTERS
The quotation marks characters- See Also:
- Constant Field Values
-
QUOTATION_MARK_CHARACTERS
public static final java.lang.String QUOTATION_MARK_CHARACTERS
The quotation marks characters- See Also:
- Constant Field Values
-
ESCAPE_SEQUENCES
public static final java.lang.String ESCAPE_SEQUENCES
All escape sequences characters- See Also:
- Constant Field Values
-
ESCAPE_SEQUENCES_CHARS
public static final java.lang.String ESCAPE_SEQUENCES_CHARS
All escape sequences and white space characters- See Also:
- Constant Field Values
-
-
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()
-
-