Package swingtree

Enum Class UI.GradientType

java.lang.Object
java.lang.Enum<UI.GradientType>
swingtree.UI.GradientType
All Implemented Interfaces:
Serializable, Comparable<UI.GradientType>, Constable, UIEnum<UI.GradientType>
Enclosing class:
UI

@Immutable public static enum UI.GradientType extends Enum<UI.GradientType> implements UIEnum<UI.GradientType>
Use these enum instances to specify the gradient type for various sub styles, like for example the gradient style API exposed by ComponentStyleDelegate.gradient(Layer, String, Configurator) or ComponentStyleDelegate.gradient(Configurator) methods (see UIForAnySwing.withStyle(Styler)).

GradientConf.type(GradientType) method exposed by methods like ComponentStyleDelegate.gradient(String, Configurator) or ComponentStyleDelegate.gradient(Layer, String, Configurator).

  • Enum Constant Details

    • LINEAR

      public static final UI.GradientType LINEAR
      A linear gradient is a gradient that follows a straight line.
    • RADIAL

      public static final UI.GradientType RADIAL
      A radial gradient is a gradient that follows a circular pattern by growing from a central point outwards.
    • CONIC

      public static final UI.GradientType CONIC
      A conic gradient paints the color transition like the hands of a clock move around its center.
  • Method Details

    • values

      public static UI.GradientType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static UI.GradientType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null