public class MicroTimestamp extends Object
INT64 number of
microseconds past epoch, and for defining a Kafka Connect Schema for timestamp values with no timezone
information.Timestamp,
NanoTimestamp,
ZonedTimestamp| Modifier and Type | Field and Description |
|---|---|
static String |
SCHEMA_NAME |
| Modifier | Constructor and Description |
|---|---|
private |
MicroTimestamp() |
| Modifier and Type | Method and Description |
|---|---|
static org.apache.kafka.connect.data.SchemaBuilder |
builder()
Returns a
SchemaBuilder for a MicroTimestamp. |
static org.apache.kafka.connect.data.Schema |
schema()
Returns a Schema for a
MicroTimestamp but with all other default Schema settings. |
static long |
toEpochMicros(Object value,
TemporalAdjuster adjuster)
|
public static final String SCHEMA_NAME
public static org.apache.kafka.connect.data.SchemaBuilder builder()
SchemaBuilder for a MicroTimestamp. The resulting schema will describe a field
with the "io.debezium.time.MicroTimestamp" as the name and INT64 for the literal
type storing the number of microseconds past midnight.
You can use the resulting SchemaBuilder to set or override additional schema settings such as required/optional, default value, and documentation.
public static org.apache.kafka.connect.data.Schema schema()
MicroTimestamp but with all other default Schema settings. The schema describes a field
with the "io.debezium.time.MicroTimestamp" as the name and INT64 for the literal
type storing the number of microseconds past midnight.builder()public static long toEpochMicros(Object value, TemporalAdjuster adjuster)
LocalDateTime, LocalDate,
LocalTime, Date, Date, Time, or
Timestamp.value - the local or SQL date, time, or timestamp value; may not be nulladjuster - the optional component that adjusts the local date value before obtaining the epoch day; may be null if no
adjustment is necessaryIllegalArgumentException - if the value is not an instance of the acceptable typesCopyright © 2018 JBoss by Red Hat. All rights reserved.