Module org.tquadrat.foundation.fx
Class TimeSliderSkin.OffsetTimeConverter
java.lang.Object
javafx.util.StringConverter<Number>
org.tquadrat.foundation.fx.control.skin.TimeSliderSkin.OffsetTimeConverter
- Enclosing class:
TimeSliderSkin
@ClassVersion(sourceVersion="$Id: TimeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $")
@API(status=INTERNAL,
since="0.4.6")
private final class TimeSliderSkin.OffsetTimeConverter
extends StringConverter<Number>
The
StringConverter.toString(Object)
method of this implementation of
StringConverter
takes a number representing the number of seconds since the beginning
of the epoch, converts it to an instance of
OffsetDateTime
,
takes the
time
portion of it and converts that to a
String
.
The method
fromString(String)
will do nothing; therefore this implementation of
StringConverter
is incomplete.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: TimeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $
- Since:
- 0.4.6
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.fx.control.skin.TimeSliderSkin.OffsetTimeConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final DateTimeFormatter
TheDateTimeFormatter
that is used to convert theOffsetTime
instances to Strings. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
m_TimeFormatter
TheDateTimeFormatter
that is used to convert theOffsetTime
instances to Strings.
-
-
Constructor Details
-
OffsetTimeConverter
public OffsetTimeConverter()Creates a new instance ofOffsetTimeConverter
.
-
-
Method Details
-
fromString
- Specified by:
fromString
in classStringConverter<Number>
-
toString
- Specified by:
toString
in classStringConverter<Number>
-