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

        public java.lang.String getCharacters()