Package swingtree
Enum Class UI.Span
- All Implemented Interfaces:
Serializable
,Comparable<UI.Span>
,Constable
,UIEnum<UI.Span>
- Enclosing class:
- UI
Use these enum instances to specify the gradient alignment for various sub styles,
like for example the gradient style API exposed by
ComponentStyleDelegate.gradient(Configurator)
or ComponentStyleDelegate.gradient(Configurator)
methods (see UIForAnySwing.withStyle(Styler)
).
GradientConf.span(Span)
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
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Use this to check if the alignment is diagonal and not horizontal or vertical.static UI.Span
Returns the enum constant of this class with the specified name.static UI.Span[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TOP_LEFT_TO_BOTTOM_RIGHT
-
BOTTOM_LEFT_TO_TOP_RIGHT
-
TOP_RIGHT_TO_BOTTOM_LEFT
-
BOTTOM_RIGHT_TO_TOP_LEFT
-
TOP_TO_BOTTOM
-
LEFT_TO_RIGHT
-
BOTTOM_TO_TOP
-
RIGHT_TO_LEFT
-
-
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
-
isDiagonal
public boolean isDiagonal()Use this to check if the alignment is diagonal and not horizontal or vertical.- Returns:
true
if this alignment is diagonal,false
otherwise.
-