Enum Class Jsr310Converters.InstantToDateConverter

java.lang.Object
java.lang.Enum<Jsr310Converters.InstantToDateConverter>
org.springframework.data.convert.Jsr310Converters.InstantToDateConverter
All Implemented Interfaces:
Serializable, Comparable<Jsr310Converters.InstantToDateConverter>, Constable, org.springframework.core.convert.converter.Converter<Instant,Date>
Enclosing class:
Jsr310Converters

@WritingConverter public static enum Jsr310Converters.InstantToDateConverter extends Enum<Jsr310Converters.InstantToDateConverter> implements org.springframework.core.convert.converter.Converter<Instant,Date>
  • Enum Constant Details

  • Method Details

    • values

      public static Jsr310Converters.InstantToDateConverter[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Jsr310Converters.InstantToDateConverter valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • convert

      @NonNull public Date convert(Instant source)
      Specified by:
      convert in interface org.springframework.core.convert.converter.Converter<Instant,Date>