Package swingtree
Enum Class 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)
.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA conic gradient paints the color transition like the hands of a clock move around its center.A linear gradient is a gradient that follows a straight line.A radial gradient is a gradient that follows a circular pattern by growing from a central point outwards. -
Method Summary
Modifier and TypeMethodDescriptionstatic UI.GradientType
Returns the enum constant of this class with the specified name.static UI.GradientType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINEAR
A linear gradient is a gradient that follows a straight line. -
RADIAL
A radial gradient is a gradient that follows a circular pattern by growing from a central point outwards. -
CONIC
A conic gradient paints the color transition like the hands of a clock move around its center.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-