Module javafx.base

Class DateStringConverter


public class DateStringConverter extends DateTimeStringConverter

StringConverter implementation for Date values.

Since:
JavaFX 2.1
See Also:
  • Constructor Details

    • DateStringConverter

      public DateStringConverter()
      Create a StringConverter for Date values, using the DateFormat.DEFAULT date style.
    • DateStringConverter

      public DateStringConverter(int dateStyle)
      Create a StringConverter for Date values, using the specified DateFormat date style.
      Parameters:
      dateStyle - the given formatting style. For example, DateFormat.SHORT for "M/d/yy" in the US locale.
      Since:
      JavaFX 8u40
    • DateStringConverter

      public DateStringConverter(Locale locale)
      Create a StringConverter for Date values, using the specified locale and the DateFormat.DEFAULT date style.
      Parameters:
      locale - the given locale.
    • DateStringConverter

      public DateStringConverter(Locale locale, int dateStyle)
      Create a StringConverter for Date values, using the specified locale and DateFormat date style.
      Parameters:
      locale - the given locale.
      dateStyle - the given formatting style. For example, DateFormat.SHORT for "M/d/yy" in the US locale.
      Since:
      JavaFX 8u40
    • DateStringConverter

      public DateStringConverter(String pattern)
      Create a StringConverter for Date values, using the specified pattern.
      Parameters:
      pattern - the pattern describing the date format.
    • DateStringConverter

      public DateStringConverter(Locale locale, String pattern)
      Create a StringConverter for Date values, using the specified locale and pattern.
      Parameters:
      locale - the given locale.
      pattern - the pattern describing the date format.
    • DateStringConverter

      public DateStringConverter(DateFormat dateFormat)
      Create a StringConverter for Date values, using the specified DateFormat formatter.
      Parameters:
      dateFormat - the DateFormat to be used for formatting and parsing.
  • Method Details

    • getDateFormat

      protected DateFormat getDateFormat()