Uses of Class
com.addicticks.texttime.OffsetDate
-
Packages that use OffsetDate Package Description com.addicticks.texttime Provides additional parsing/formatting features for Date/Time to complement those in the JDK.com.addicticks.texttime.formatters Provides additional Formatter-Parsers to complement those in the JDK.com.addicticks.texttime.jaxb JAXB adapter classes to convert between XML date-time values and JDK's Date-Time. -
-
Uses of OffsetDate in com.addicticks.texttime
Methods in com.addicticks.texttime that return OffsetDate Modifier and Type Method Description static OffsetDateOffsetDate. from(TemporalAccessor temporal)Obtains an instance ofOffsetDatefrom a temporal object.static OffsetDateOffsetDate. of(int year, int month, int dayOfMonth, ZoneOffset offset)Obtains an instance ofOffsetDatefrom a year, month, day, and offset.static OffsetDateOffsetDate. of(LocalDate date, ZoneOffset offset)Obtains an instance ofOffsetDatefrom aLocalDateand an offset.static OffsetDateOffsetDate. of(OffsetDateTime datetime)Obtains an instance ofOffsetDatefrom anOffsetDateTimeThe time part of the input value will beremoved.Methods in com.addicticks.texttime with parameters of type OffsetDate Modifier and Type Method Description intOffsetDate. compareTo(OffsetDate other)Compares this date to another date. -
Uses of OffsetDate in com.addicticks.texttime.formatters
Methods in com.addicticks.texttime.formatters that return OffsetDate Modifier and Type Method Description static OffsetDateDateTimeFormatterUtils. fromTemporalAccessorToOffsetDate(TemporalAccessor temporal, Function<LocalDate,ZoneOffset> zoneOffsetProvider, int defaultMonth, int defaultDayOfMonth)Creates aOffsetDatefrom aTemporalAccessor.static OffsetDateDateTimeFormatterISO. parseIntoOffsetDate(String str, ZoneOffset defaultZoneOffset)Parses a ISO-8601 date string into anOffsetDate.static OffsetDateDateTimeFormatterISO. parseIntoOffsetDate(String str, Function<LocalDate,ZoneOffset> zoneOffsetProvider)Parses a ISO-8601 date string into anOffsetDate.static OffsetDateDateTimeFormatterXSD. parseIntoOffsetDate(String str, ZoneOffset defaultZoneOffset)Parses axs:datestring into anOffsetDate.static OffsetDateDateTimeFormatterXSD. parseIntoOffsetDate(String str, Function<LocalDate,ZoneOffset> zoneOffsetProvider)Parses axs:datestring into anOffsetDate. -
Uses of OffsetDate in com.addicticks.texttime.jaxb
Methods in com.addicticks.texttime.jaxb that return OffsetDate Modifier and Type Method Description OffsetDateOffsetDateClassXmlAdapter. unmarshal(String v)Converts fromxs:dateformat.Methods in com.addicticks.texttime.jaxb with parameters of type OffsetDate Modifier and Type Method Description StringOffsetDateClassXmlAdapter. marshal(OffsetDate v)Converts toxs:dateformat.
-