Module org.tquadrat.foundation.fx
Enum Class TimeSlider.Granularity
- All Implemented Interfaces:
Serializable
,Comparable<TimeSlider.Granularity>
,Constable
- Enclosing class:
TimeSlider
@ClassVersion(sourceVersion="$Id: TimeSlider.java 1121 2024-03-16 16:51:23Z tquadrat $")
@API(status=STABLE,
since="0.4.6")
public static enum TimeSlider.Granularity
extends Enum<TimeSlider.Granularity>
The granularity for the
TimeSlider
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: TimeSlider.java 1121 2024-03-16 16:51:23Z tquadrat $
- Since:
- 0.4.6
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription5 minutes steps can be selected.Half hour steps are possible.Only full hours can be selected.One minute steps can be selected.Quarter hour steps are possible.10 minutes steps can be selected.20 minutes steps can be selected. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
The minor tick count for this granularity. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Granularity
(int tickCount) Creates a new instance ofGranularity
. -
Method Summary
Modifier and TypeMethodDescriptionfinal int
Returns the minor tick count for this granularity.static TimeSlider.Granularity
Returns the enum constant of this class with the specified name.static TimeSlider.Granularity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONE_HOUR
Only full hours can be selected. -
HALF_HOUR
Half hour steps are possible. -
TWENTY_MINUTES
20 minutes steps can be selected. -
QUARTER_HOUR
Quarter hour steps are possible. -
TEN_MINUTES
10 minutes steps can be selected. -
FIVE_MINUTES
5 minutes steps can be selected. -
ONE_MINUTE
One minute steps can be selected.
-
-
Field Details
-
m_MinorTickCount
The minor tick count for this granularity.
-
-
Constructor Details
-
Granularity
Creates a new instance ofGranularity
.- Parameters:
tickCount
- The minor tick count for this granularity.
-
-
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
-
getMinorTickCount
Returns the minor tick count for this granularity.- Returns:
- The tick count.
-