| Modifier and Type | Field and Description |
|---|---|
static String |
SCHEMA_NAME |
| Modifier | Constructor and Description |
|---|---|
private |
Time() |
| Modifier and Type | Method and Description |
|---|---|
static org.apache.kafka.connect.data.SchemaBuilder |
builder()
Returns a
SchemaBuilder for a Time. |
static org.apache.kafka.connect.data.Schema |
schema()
Returns a Schema for a
Time but with all other default Schema settings. |
static int |
toMilliOfDay(Object value)
|
public static final String SCHEMA_NAME
public static org.apache.kafka.connect.data.SchemaBuilder builder()
SchemaBuilder for a Time. The resulting schema will describe a field
with the "io.debezium.time.Time" as the name and INT32 for the literal
type storing the number of milliseconds 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()
Time but with all other default Schema settings. The schema describes a field
with the "io.debezium.time.Time" as the name and INT32 for the literal
type storing the number of milliseconds past midnight.builder()public static int toMilliOfDay(Object value)
LocalDateTime, LocalDate,
LocalTime, Date, Date, Time, or
Timestamp, ignoring any date portions of the supplied value.value - the local or SQL date, time, or timestamp value; may not be nullIllegalArgumentException - if the value is not an instance of the acceptable typesCopyright © 2016 JBoss by Red Hat. All rights reserved.