类 InstantFormatter

java.lang.Object
cn.taketoday.format.datetime.standard.InstantFormatter
所有已实现的接口:
Formatter<Instant>, Parser<Instant>, Printer<Instant>

public class InstantFormatter extends Object implements Formatter<Instant>
Formatter implementation for a JSR-310 Instant, following JSR-310's parsing rules for an Instant (that is, not using a configurable DateTimeFormatter): accepting the default ISO_INSTANT format as well as RFC_1123_DATE_TIME (which is commonly used for HTTP date header values)
从以下版本开始:
4.0
作者:
Juergen Hoeller, Andrei Nevedomskii
另请参阅:
  • 构造器详细资料

    • InstantFormatter

      public InstantFormatter()
  • 方法详细资料

    • parse

      public Instant parse(String text, Locale locale) throws ParseException
      从接口复制的说明: Parser
      Parse a text String to produce a T.
      指定者:
      parse 在接口中 Parser<Instant>
      参数:
      text - the text string
      locale - the current user locale
      返回:
      an instance of T
      抛出:
      ParseException - when a parse exception occurs in a java.text parsing library
    • print

      public String print(Instant object, Locale locale)
      从接口复制的说明: Printer
      Print the object of type T for display.
      指定者:
      print 在接口中 Printer<Instant>
      参数:
      object - the instance to print
      locale - the current user locale
      返回:
      the printed text string