Class TimeStringConverter
- javafx.util.StringConverter<Date>
-
- javafx.util.converter.DateTimeStringConverter
-
- javafx.util.converter.TimeStringConverter
public class TimeStringConverter extends DateTimeStringConverter
StringConverter implementation for Date values that represent time.
Since:
JavaFX 2.1
See Also:
-
Field Summary
-
Fields inherited from class javafx.util.converter.DateTimeStringConverter
dateFormat, dateStyle, locale, pattern, timeStyle
-
-
Constructor Summary
Constructors Constructor and Description TimeStringConverter()TimeStringConverter(DateFormat dateFormat)TimeStringConverter(int timeStyle)TimeStringConverter(Locale locale)Create aStringConverterforDatevalues, using the specified locale and theDateFormat.DEFAULTtime style.TimeStringConverter(Locale locale, int timeStyle)TimeStringConverter(Locale locale, String pattern)Create aStringConverterforDatevalues, using the specified locale and pattern.TimeStringConverter(String pattern)Create aStringConverterforDatevalues, using the specified pattern.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description protected DateFormatgetDateFormat()Return aDateFormatinstance to use for formatting and parsing in thisStringConverter.-
Methods inherited from class javafx.util.converter.DateTimeStringConverter
fromString, toString
-
-
Constructor Detail
-
TimeStringConverter
public TimeStringConverter()
-
TimeStringConverter
public TimeStringConverter(int timeStyle)
Parameters:
timeStyle- the given formatting style. For example,DateFormat.SHORTfor "h:mm a" in the US locale.Since:
JavaFX 8u40
-
TimeStringConverter
public TimeStringConverter(Locale locale)
Create aStringConverterforDatevalues, using the specified locale and theDateFormat.DEFAULTtime style.Parameters:
locale- the given locale.
-
TimeStringConverter
public TimeStringConverter(Locale locale, int timeStyle)Parameters:
locale- the given locale.Since:
JavaFX 8u40
-
TimeStringConverter
public TimeStringConverter(String pattern)
Create aStringConverterforDatevalues, using the specified pattern.Parameters:
pattern- the pattern describing the time format.
-
TimeStringConverter
public TimeStringConverter(Locale locale, String pattern)Create aStringConverterforDatevalues, using the specified locale and pattern.Parameters:
locale- the given locale.
-
TimeStringConverter
public TimeStringConverter(DateFormat dateFormat)
Parameters:
dateFormat- theDateFormatto be used for formatting and parsing.
-
-
Method Detail
-
getDateFormat
protected DateFormat getDateFormat()
Return a
DateFormatinstance to use for formatting and parsing in thisStringConverter.Overrides:
getDateFormatin classDateTimeStringConverter
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.