Spec-Zone.ru › OpenJavaFX 8
javafx.util.converter

Class LocalTimeStringConverter

java.lang.Object
  • javafx.util.StringConverter<LocalTime>
    • javafx.util.converter.LocalTimeStringConverter


public class LocalTimeStringConverter
extends StringConverter<LocalTime>

StringConverter implementation for LocalTime values.

Since:

JavaFX 8u40

See Also:

LocalDateStringConverter, LocalDateTimeStringConverter

  • Constructor Summary

    Constructors
    Constructor and Description
    LocalTimeStringConverter()
    Create a StringConverter for LocalTime values, using a default formatter and parser with FormatStyle.SHORT, and the user's Locale.
    LocalTimeStringConverter(DateTimeFormatter formatter, DateTimeFormatter parser)
    Create a StringConverter for LocalTime values using the supplied formatter and parser, which are responsible for choosing the desired Locale.
    LocalTimeStringConverter(FormatStyle timeStyle)
    Create a StringConverter for LocalTime values, using a default formatter and parser with the specified FormatStyle and based on the user's Locale.
    LocalTimeStringConverter(FormatStyle timeStyle, Locale locale)
    Create a StringConverter for LocalTime values, using a default formatter and parser with the specified FormatStyle and Locale.
  • Method Summary

    All MethodsInstance MethodsConcrete Methods
    Modifier and Type Method and Description
    LocalTime fromString(String value)
    Converts the string provided into an object defined by the specific converter.
    String toString(LocalTime value)
    Converts the object provided into its string form.
    • Methods inherited from class java.lang.Object

      clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Detail

    • LocalTimeStringConverter

      public LocalTimeStringConverter()
      Create a StringConverter for LocalTime values, using a default formatter and parser with FormatStyle.SHORT, and the user's Locale.
    • LocalTimeStringConverter

      public LocalTimeStringConverter(FormatStyle timeStyle)
      Create a StringConverter for LocalTime values, using a default formatter and parser with the specified FormatStyle and based on the user's Locale.

      Parameters:

      timeStyle - The FormatStyle that will be used by the default formatter and parser. If null then FormatStyle.SHORT will be used.

    • LocalTimeStringConverter

      public LocalTimeStringConverter(FormatStyle timeStyle,
                                      Locale locale)
      Create a StringConverter for LocalTime values, using a default formatter and parser with the specified FormatStyle and Locale.

      Parameters:

      timeStyle - The FormatStyle that will be used by the default formatter and parser. If null then FormatStyle.SHORT will be used.

    • LocalTimeStringConverter

      public LocalTimeStringConverter(DateTimeFormatter formatter,
                                      DateTimeFormatter parser)
      Create a StringConverter for LocalTime values using the supplied formatter and parser, which are responsible for choosing the desired Locale.

      For example, a fixed pattern can be used for converting both ways:

      String pattern = "HH:mm:ss";
       DateTimeFormatter formatter = DateTimeFormatter.ofPattern(pattern);
       StringConverter converter =
           DateTimeStringConverter.getLocalTimeConverter(formatter, null);

      Parameters:

      formatter - An instance of DateTimeFormatter which will be used for formatting by the toString() method. If null then a default formatter will be used.

  • Method Detail

    • fromString

      public LocalTime fromString(String value)
      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 class StringConverter<LocalTime>

      Returns:

      an object representation of the string passed in.

    • toString

      public String toString(LocalTime value)
      Converts the object provided into its string form. Format of the returned string is defined by the specific converter.

      Specified by:

      toString in class StringConverter<LocalTime>

      Returns:

      a string representation of the object passed in.

© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API