- Direct Known Subclasses:
DateStringConverter
,TimeStringConverter
public class DateTimeStringConverter extends StringConverter<Date>
StringConverter
implementation for Date
values that
represent a date and time.
- Since:
- JavaFX 2.1
- See Also:
DateStringConverter
,TimeStringConverter
-
Field Summary
Fields Modifier and Type Field Description protected DateFormat
dateFormat
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.protected int
dateStyle
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.protected Locale
locale
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.protected String
pattern
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.protected int
timeStyle
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version. -
Constructor Summary
Constructors Constructor Description DateTimeStringConverter()
DateTimeStringConverter(int dateStyle, int timeStyle)
DateTimeStringConverter(String pattern)
Create aStringConverter
forDate
values, using the specified pattern.DateTimeStringConverter(DateFormat dateFormat)
DateTimeStringConverter(Locale locale)
Create aStringConverter
forDate
values, using the specified locale andDateFormat.DEFAULT
styles for date and time.DateTimeStringConverter(Locale locale, int dateStyle, int timeStyle)
Create aStringConverter
forDate
values, using specified locale andDateFormat
styles for date and time.DateTimeStringConverter(Locale locale, String pattern)
Create aStringConverter
forDate
values, using the specified locale and pattern. -
Method Summary
Modifier and Type Method Description protected DateFormat
getDateFormat()
Deprecated, for removal: This API element is subject to removal in a future version.This method exposes internal implementation details and will be removed in a future version.Methods declared in class javafx.util.StringConverter
fromString, toString
-
Field Details
-
locale
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version. -
pattern
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version. -
dateFormat
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version. -
dateStyle
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.- Since:
- JavaFX 8u40
-
timeStyle
Deprecated, for removal: This API element is subject to removal in a future version.This field was exposed erroneously and will be removed in a future version.- Since:
- JavaFX 8u40
-
-
Constructor Details
-
DateTimeStringConverter
public DateTimeStringConverter() -
DateTimeStringConverter
public DateTimeStringConverter(int dateStyle, int timeStyle)- Parameters:
dateStyle
- the given formatting style. For example,DateFormat.SHORT
for "M/d/yy" in the US locale.timeStyle
- the given formatting style. For example,DateFormat.SHORT
for "h:mm a" in the US locale.- Since:
- JavaFX 8u40
-
DateTimeStringConverter
Create aStringConverter
forDate
values, using the specified locale andDateFormat.DEFAULT
styles for date and time.- Parameters:
locale
- the given locale.
-
DateTimeStringConverter
Create aStringConverter
forDate
values, using specified locale andDateFormat
styles for date and time.- Parameters:
locale
- the given locale.dateStyle
- the given formatting style. For example,DateFormat.SHORT
for "M/d/yy" in the US locale.timeStyle
- the given formatting style. For example,DateFormat.SHORT
for "h:mm a" in the US locale.- Since:
- JavaFX 8u40
-
DateTimeStringConverter
Create aStringConverter
forDate
values, using the specified pattern.- Parameters:
pattern
- the pattern describing the date and time format.
-
DateTimeStringConverter
Create aStringConverter
forDate
values, using the specified locale and pattern.- Parameters:
locale
- the given locale.pattern
- the pattern describing the date and time format.
-
DateTimeStringConverter
- Parameters:
dateFormat
- theDateFormat
to be used for formatting and parsing.
-
-
Method Details
-
getDateFormat
Deprecated, for removal: This API element is subject to removal in a future version.This method exposes internal implementation details and will be removed in a future version.Return a
DateFormat
instance to use for formatting and parsing in thisStringConverter
.- Returns:
- a
DateFormat
instance for formatting and parsing in thisStringConverter
-