Class ZonedTime

java.lang.Object
io.debezium.time.ZonedTime

public class ZonedTime extends Object
A utility for converting various Java time representations into the STRING representation of the time in a particular time zone, and for defining a Kafka Connect Schema for zoned time values.

The ISO date-time format includes the time (including fractional parts) and offset from UTC, such as '10:15:30+01:00'.

Author:
Randall Hauch
See Also:
  • Field Details

  • Constructor Details

    • ZonedTime

      private ZonedTime()
  • Method Details

    • builder

      public static org.apache.kafka.connect.data.SchemaBuilder builder()
      Returns a SchemaBuilder for a ZonedTime. You can use the resulting SchemaBuilder to set additional schema settings such as required/optional, default value, and documentation.
      Returns:
      the schema builder
    • schema

      public static org.apache.kafka.connect.data.Schema schema()
      Returns a Schema for a ZonedTime but with all other default Schema settings.
      Returns:
      the schema
      See Also:
    • toIsoString

      public static String toIsoString(Object value, ZoneId defaultZone, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given LocalDateTime, LocalDate, LocalTime, Date, Date, Time, Timestamp, OffsetTime, or OffsetDateTime, ignoring any date portions of the supplied value.
      Parameters:
      value - the local or SQL date, time, or timestamp value; may not be null
      defaultZone - the time zone that should be used by default if the value does not have timezone information; may not be null
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the microseconds past midnight
      Throws:
      IllegalArgumentException - if the value is not an instance of the acceptable types or is null
    • toIsoString

      public static String toIsoString(OffsetDateTime timestamp, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given OffsetDateTime.
      Parameters:
      timestamp - the timestamp value; may not be null
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string
    • toIsoString

      public static String toIsoString(OffsetTime timestamp, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given OffsetTime.
      Parameters:
      timestamp - the timestamp value; may not be null
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string
    • toIsoString

      public static String toIsoString(Date timestamp, ZoneId zoneId, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given Date or one of its JDBC subclasses, using the supplied timezone information.
      Parameters:
      timestamp - the timestamp value; may not be null
      zoneId - the timezone identifier or offset where the timestamp is defined
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string
    • toIsoString

      public static String toIsoString(Timestamp timestamp, ZoneId zoneId, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given Timestamp, which contains a date and time but has no timezone information.
      Parameters:
      timestamp - the JDBC timestamp value; may not be null
      zoneId - the timezone identifier or offset where the timestamp is defined
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string
    • toIsoString

      public static String toIsoString(Date date, ZoneId zoneId, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given Date, which contains a date but no time or timezone information.
      Parameters:
      date - the date value; may not be null
      zoneId - the timezone identifier or offset where the date is defined
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string
    • toIsoString

      public static String toIsoString(Time time, ZoneId zoneId, TemporalAdjuster adjuster)
      Get the ISO 8601 formatted representation of the given Time, which contains time but no date or timezone information.
      Parameters:
      time - the JDBC time value; may not be null
      zoneId - the timezone identifier or offset where the time is defined
      adjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no adjustment is necessary
      Returns:
      the ISO 8601 formatted string