java.lang.Object
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:
- DateStringConverter,- DateTimeStringConverter
- 
Field SummaryFields declared in class javafx.util.converter.DateTimeStringConverterdateFormat, dateStyle, locale, pattern, timeStyle
- 
Constructor SummaryConstructors Constructor Description TimeStringConverter()TimeStringConverter(int timeStyle)TimeStringConverter(String pattern)Create aStringConverterforDatevalues, using the specified pattern.TimeStringConverter(DateFormat dateFormat)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.
- 
Method SummaryMethods declared in class javafx.util.converter.DateTimeStringConvertergetDateFormatMethods declared in class javafx.util.StringConverterfromString, toString
- 
Constructor Details- 
TimeStringConverterpublic TimeStringConverter()
- 
TimeStringConverterpublic TimeStringConverter(int timeStyle)- Parameters:
- timeStyle- the given formatting style. For example,- DateFormat.SHORTfor "h:mm a" in the US locale.
- Since:
- JavaFX 8u40
 
- 
TimeStringConverterCreate aStringConverterforDatevalues, using the specified locale and theDateFormat.DEFAULTtime style.- Parameters:
- locale- the given locale.
 
- 
TimeStringConverter- Parameters:
- locale- the given locale.
- timeStyle- the given formatting style. For example,- DateFormat.SHORTfor "h:mm a" in the US locale.
- Since:
- JavaFX 8u40
 
- 
TimeStringConverterCreate aStringConverterforDatevalues, using the specified pattern.- Parameters:
- pattern- the pattern describing the time format.
 
- 
TimeStringConverterCreate aStringConverterforDatevalues, using the specified locale and pattern.- Parameters:
- locale- the given locale.
- pattern- the pattern describing the time format.
 
- 
TimeStringConverter- Parameters:
- dateFormat- the- DateFormatto be used for formatting and parsing.
 
 
-