Enum RandomCharacters

    • Enum Constant Detail

      • 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.
      • 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
      • 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 name
        java.lang.NullPointerException - if the argument is null
      • getCharacters

        public java.lang.String getCharacters()