Enum Icons

    • Enum Constant Detail

      • ARROW_DOWN

        public static final Icons ARROW_DOWN
      • CHEVRON_DOUBLE_LEFT

        public static final Icons CHEVRON_DOUBLE_LEFT
      • CHEVRON_DOUBLE_RIGHT

        public static final Icons CHEVRON_DOUBLE_RIGHT
      • CHEVRON_LEFT

        public static final Icons CHEVRON_LEFT
      • CHEVRON_RIGHT

        public static final Icons CHEVRON_RIGHT
      • CARET_LEFT

        public static final Icons CARET_LEFT
      • CALENDAR3

        public static final Icons CALENDAR3
      • CLOCK

        public static final Icons CLOCK
      • THREE_DOTS

        public static final Icons THREE_DOTS
      • EXCLAMATION

        public static final Icons EXCLAMATION
      • EXCLAMATION_LG

        public static final Icons EXCLAMATION_LG
      • FOLDER2_OPEN

        public static final Icons FOLDER2_OPEN
      • CARET_RIGHT

        public static final Icons CARET_RIGHT
      • DASH_SQUARE

        public static final Icons DASH_SQUARE
      • PLUS_SQUARE

        public static final Icons PLUS_SQUARE
      • QUESTION

        public static final Icons QUESTION
      • QUESTION_LG

        public static final Icons QUESTION_LG
      • SQUARE

        public static final Icons SQUARE
      • SKIP_START

        public static final Icons SKIP_START
      • SKIP_END

        public static final Icons SKIP_END
    • 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
      • matches

        public static boolean matches​(String value)