Enum Icons

    • Enum Constant Detail

      • ANGLE_DOUBLE_LEFT

        public static final Icons ANGLE_DOUBLE_LEFT
      • ANGLE_DOUBLE_RIGHT

        public static final Icons ANGLE_DOUBLE_RIGHT
      • ANGLE_DOWN

        public static final Icons ANGLE_DOWN
      • ANGLE_LEFT

        public static final Icons ANGLE_LEFT
      • ANGLE_RIGHT

        public static final Icons ANGLE_RIGHT
      • ANGLE_UP

        public static final Icons ANGLE_UP
      • BACKWARD

        public static final Icons BACKWARD
      • BARS

        public static final Icons BARS
      • CALENDAR

        public static final Icons CALENDAR
      • CLOCK_O

        public static final Icons CLOCK_O
      • ELLIPSIS_H

        public static final Icons ELLIPSIS_H
      • EXCLAMATION

        public static final Icons EXCLAMATION
      • FOLDER_OPEN

        public static final Icons FOLDER_OPEN
      • FORWARD

        public static final Icons FORWARD
      • MINUS_SQUARE_O

        public static final Icons MINUS_SQUARE_O
      • PLUS_SQUARE_O

        public static final Icons PLUS_SQUARE_O
      • QUESTION

        public static final Icons QUESTION
      • SQUARE_O

        public static final Icons SQUARE_O
      • STEP_BACKWARD

        public static final Icons STEP_BACKWARD
      • STEP_FORWARD

        public static final Icons STEP_FORWARD
    • Field Detail

      • FA

        public static final CssItem FA
    • Method Detail

      • values

        public static Icons[] 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 (Icons c : Icons.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Icons valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null