类 TemporalAccessorParser
java.lang.Object
cn.taketoday.format.datetime.standard.TemporalAccessorParser
- 所有已实现的接口:
Parser<TemporalAccessor>
Parser implementation for a JSR-310 TemporalAccessor,
using a DateTimeFormatter (the contextual one, if available).- 从以下版本开始:
- 4.0
- 作者:
- Juergen Hoeller, Sam Brannen, Kazuki Shimizu
- 另请参阅:
-
DateTimeContextHolder.getFormatter(java.time.format.DateTimeFormatter, java.util.Locale)LocalDate.parse(CharSequence, DateTimeFormatter)LocalTime.parse(CharSequence, DateTimeFormatter)LocalDateTime.parse(CharSequence, DateTimeFormatter)ZonedDateTime.parse(CharSequence, DateTimeFormatter)OffsetDateTime.parse(CharSequence, DateTimeFormatter)OffsetTime.parse(CharSequence, DateTimeFormatter)YearMonth.parse(CharSequence, DateTimeFormatter)MonthDay.parse(CharSequence, DateTimeFormatter)
-
构造器概要
构造器构造器说明TemporalAccessorParser(Class<? extends TemporalAccessor> temporalAccessorType, DateTimeFormatter formatter) Create a new TemporalAccessorParser for the given TemporalAccessor type. -
方法概要
-
构造器详细资料
-
TemporalAccessorParser
public TemporalAccessorParser(Class<? extends TemporalAccessor> temporalAccessorType, DateTimeFormatter formatter) Create a new TemporalAccessorParser for the given TemporalAccessor type.- 参数:
temporalAccessorType- the specific TemporalAccessor class (LocalDate, LocalTime, LocalDateTime, ZonedDateTime, OffsetDateTime, OffsetTime)formatter- the base DateTimeFormatter instance
-
-
方法详细资料
-
parse
从接口复制的说明:ParserParse a text String to produce a T.- 指定者:
parse在接口中Parser<TemporalAccessor>- 参数:
text- the text stringlocale- the current user locale- 返回:
- an instance of T
- 抛出:
ParseException- when a parse exception occurs in a java.text parsing library
-