Package swingtree
Enum Class UI.Layer
- All Implemented Interfaces:
Serializable
,Comparable<UI.Layer>
,Constable
,UIEnum<UI.Layer>
- Enclosing class:
- UI
Instances of this enum are used to configure onto which
layer a particular style configuration should be applied.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis layer is applied through theStylableComponent.paintBackground(Graphics, Consumer)
method.This layer is rendered right after the content layer through theBorder
of a component.This layer is rendered right after the background layer through theBorder
of a component.The foreground is painted through theStylableComponent.paintForeground(Graphics, Consumer)
method. -
Method Summary
-
Enum Constant Details
-
BACKGROUND
This layer is applied through theStylableComponent.paintBackground(Graphics, Consumer)
method. When using custom components, please make sure your component implements this interface! -
CONTENT
This layer is rendered right after the background layer through theBorder
of a component. Every component supports this layer. -
BORDER
This layer is rendered right after the content layer through theBorder
of a component. Every component supports this layer. -
FOREGROUND
The foreground is painted through theStylableComponent.paintForeground(Graphics, Consumer)
method. When using custom components, please make sure your component implements this interface!
-
-
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
-