Module org.tquadrat.foundation.fx
Enum Class RangeSliderSkin.FocusedChild
java.lang.Object
java.lang.Enum<RangeSliderSkin.FocusedChild>
org.tquadrat.foundation.fx.control.skin.RangeSliderSkin.FocusedChild
- All Implemented Interfaces:
Serializable
,Comparable<RangeSliderSkin.FocusedChild>
,Constable
- Enclosing class:
RangeSliderSkin
@ClassVersion(sourceVersion="$Id: RangeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $")
@API(status=INTERNAL,
since="0.4.6")
protected static enum RangeSliderSkin.FocusedChild
extends Enum<RangeSliderSkin.FocusedChild>
The indicators for the focus owners.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: RangeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $
- Since:
- 0.4.6
- Inspired through:
- ControlsFX Project
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.fx.control.skin.RangeSliderSkin.FocusedChild"
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe focus is on the high thump.The focus is on the low thumb.None of the elements of theRangeSlider
does currently have the focus.The focus is on the range bar. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RangeSliderSkin.FocusedChild
Returns the enum constant of this class with the specified name.static RangeSliderSkin.FocusedChild[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOW_THUMB
The focus is on the low thumb. -
HIGH_THUMB
The focus is on the high thump. -
RANGE_BAR
The focus is on the range bar. -
NONE
None of the elements of theRangeSlider
does currently have the focus.
-
-
Constructor Details
-
FocusedChild
private FocusedChild()
-
-
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
-