- 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 SummaryFields Modifier and Type Field Description protected DateFormatdateFormatDeprecated, 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 intdateStyleDeprecated, 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 LocalelocaleDeprecated, 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 StringpatternDeprecated, 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 inttimeStyleDeprecated, 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 SummaryConstructors Constructor Description DateTimeStringConverter()DateTimeStringConverter(int dateStyle, int timeStyle)DateTimeStringConverter(String pattern)Create aStringConverterforDatevalues, using the specified pattern.DateTimeStringConverter(DateFormat dateFormat)DateTimeStringConverter(Locale locale)Create aStringConverterforDatevalues, using the specified locale andDateFormat.DEFAULTstyles for date and time.DateTimeStringConverter(Locale locale, int dateStyle, int timeStyle)Create aStringConverterforDatevalues, using specified locale andDateFormatstyles for date and time.DateTimeStringConverter(Locale locale, String pattern)Create aStringConverterforDatevalues, using the specified locale and pattern.
- 
Method SummaryModifier and Type Method Description protected DateFormatgetDateFormat()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.StringConverterfromString, toString
- 
Field Details- 
localeDeprecated, 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.
- 
patternDeprecated, 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.
- 
dateFormatDeprecated, 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.
- 
dateStyleDeprecated, 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
 
- 
timeStyleDeprecated, 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- 
DateTimeStringConverterpublic DateTimeStringConverter()
- 
DateTimeStringConverterpublic DateTimeStringConverter(int dateStyle, int timeStyle)- Parameters:
- dateStyle- the given formatting style. For example,- DateFormat.SHORTfor "M/d/yy" in the US locale.
- timeStyle- the given formatting style. For example,- DateFormat.SHORTfor "h:mm a" in the US locale.
- Since:
- JavaFX 8u40
 
- 
DateTimeStringConverterCreate aStringConverterforDatevalues, using the specified locale andDateFormat.DEFAULTstyles for date and time.- Parameters:
- locale- the given locale.
 
- 
DateTimeStringConverterCreate aStringConverterforDatevalues, using specified locale andDateFormatstyles for date and time.- Parameters:
- locale- the given locale.
- dateStyle- the given formatting style. For example,- DateFormat.SHORTfor "M/d/yy" in the US locale.
- timeStyle- the given formatting style. For example,- DateFormat.SHORTfor "h:mm a" in the US locale.
- Since:
- JavaFX 8u40
 
- 
DateTimeStringConverterCreate aStringConverterforDatevalues, using the specified pattern.- Parameters:
- pattern- the pattern describing the date and time format.
 
- 
DateTimeStringConverterCreate aStringConverterforDatevalues, using the specified locale and pattern.- Parameters:
- locale- the given locale.
- pattern- the pattern describing the date and time format.
 
- 
DateTimeStringConverter- Parameters:
- dateFormat- the- DateFormatto be used for formatting and parsing.
 
 
- 
- 
Method Details- 
getDateFormatDeprecated, 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 DateFormatinstance to use for formatting and parsing in thisStringConverter.- Returns:
- a DateFormatinstance for formatting and parsing in thisStringConverter
 
 
-