- 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
protected int
dateStyle
protected Locale
locale
protected String
pattern
protected int
timeStyle
-
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 Date
fromString(String value)
Converts the string provided into an object defined by the specific converter.protected DateFormat
getDateFormat()
Return aDateFormat
instance to use for formatting and parsing in thisStringConverter
.String
toString(Date value)
Converts the object provided into its string form.
-
Field Details
-
locale
-
pattern
-
dateFormat
-
dateStyle
protected final int dateStyle- Since:
- JavaFX 8u40
-
timeStyle
protected final int timeStyle- 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
-
fromString
Converts the string provided into an object defined by the specific converter. Format of the string and type of the resulting object is defined by the specific converter.- Specified by:
fromString
in classStringConverter<Date>
- Parameters:
value
- theString
to convert- Returns:
- an object representation of the string passed in.
-
toString
Converts the object provided into its string form. Format of the returned string is defined by the specific converter.- Specified by:
toString
in classStringConverter<Date>
- Parameters:
value
- the object of typeT
to convert- Returns:
- a string representation of the object passed in.
-
getDateFormat
Return a
DateFormat
instance to use for formatting and parsing in thisStringConverter
.- Returns:
- a
DateFormat
instance for formatting and parsing in thisStringConverter
-