Enum ActionIcon

    • Enum Constant Detail

      • WITHOUT_ICON

        public static final ActionIcon WITHOUT_ICON
        Deprecated.
      • PLUS

        public static final ActionIcon PLUS
        Deprecated.
      • PLUS_CIRCLE

        public static final ActionIcon PLUS_CIRCLE
        Deprecated.
      • DELETE

        public static final ActionIcon DELETE
        Deprecated.
      • SAVE

        public static final ActionIcon SAVE
        Deprecated.
      • COPY

        public static final ActionIcon COPY
        Deprecated.
      • BARS

        public static final ActionIcon BARS
        Deprecated.
      • CLOSE

        public static final ActionIcon CLOSE
        Deprecated.
    • Method Detail

      • values

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

        public static ActionIcon valueOf​(String name)
        Deprecated.
        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