Class OffsetDateTimeConverter

java.lang.Object
org.apache.commons.beanutils.converters.AbstractConverter
dev.orne.beans.converters.AbstractDateTimeConverter
dev.orne.beans.converters.OffsetDateTimeConverter
All Implemented Interfaces:
org.apache.commons.beanutils.Converter

@API(status=STABLE, since="0.1") public class OffsetDateTimeConverter extends AbstractDateTimeConverter
Implementation of Converter that converts OffsetDateTime instances to and from String using ISO-8601 as String representation by default.
Since:
0.1
Version:
1.0, 2020-05
Author:
(w) Iker Hernaez
  • Constructor Details

    • OffsetDateTimeConverter

      public OffsetDateTimeConverter()
      Creates a new instance that throws a ConversionException if an error occurs, using ISO-8601 as default conversion format.
    • OffsetDateTimeConverter

      public OffsetDateTimeConverter(OffsetDateTime defaultValue)
      Creates a new instance that returns a default value if an error occurs, using ISO-8601 as default conversion format.
      Parameters:
      defaultValue - The default value to be returned if the value to be converted is missing or an error occurs converting the value
    • OffsetDateTimeConverter

      public OffsetDateTimeConverter(@NotNull @NotNull DateTimeFormatter formatter)
      Creates a new instance that throws a ConversionException if an error occurs.
      Parameters:
      formatter - The temporal value formatter and default parser
    • OffsetDateTimeConverter

      public OffsetDateTimeConverter(@NotNull @NotNull DateTimeFormatter formatter, OffsetDateTime defaultValue)
      Creates a new instance that returns a default value if an error occurs.
      Parameters:
      formatter - The temporal value formatter and default parser
      defaultValue - The default value to be returned if the value to be converted is missing or an error occurs converting the value
  • Method Details

    • getDefaultType

      @NotNull protected @NotNull Class<?> getDefaultType()
      Specified by:
      getDefaultType in class AbstractDateTimeConverter
    • fromTemporalAccessor

      protected <T extends TemporalAccessor> T fromTemporalAccessor(@NotNull @NotNull Class<T> type, @NotNull @NotNull TemporalAccessor value)
      Converts the TemporalAccessor passed as argument to the specified type.
      Specified by:
      fromTemporalAccessor in class AbstractDateTimeConverter
      Type Parameters:
      T - The expected type of TemporalAccessor
      Parameters:
      type - The expected type of TemporalAccessor
      value - The TemporalAccessor to convert to the expected type
      Returns:
      The converted TemporalAccessor of the expected type