Inserter |
Inserter.add(boolean value) |
Sets the current field to the given boolean value.
|
Inserter |
Inserter.add(byte[] value) |
Sets the current field to the given byte array value.
|
Inserter |
Inserter.add(byte[] value,
int offset,
int length) |
Sets the current field to the given value.
|
Inserter |
Inserter.add(double value) |
Sets the current field to the given double value.
|
Inserter |
Inserter.add(float value) |
Sets the current field to the given float value.
|
Inserter |
Inserter.add(int value) |
Sets the current field to the given int value.
|
Inserter |
Inserter.add(long value) |
Sets the current field to the given long value.
|
Inserter |
Inserter.add(short value) |
Sets the current field to the given short value.
|
Inserter |
Inserter.add(Interval value) |
Sets the current INTERVAL field to the given value.
|
Inserter |
Inserter.add(java.lang.String value) |
Sets the current field to the given String value.
|
Inserter |
Inserter.add(java.math.BigDecimal value) |
Sets the current field to the given BigDecimal value.
|
Inserter |
Inserter.add(java.time.Instant value) |
Sets the current TIMESTAMP or TIMESTAMPTZ field to the given Instant value.
|
Inserter |
Inserter.add(java.time.LocalDate value) |
Sets the current DATE field to the given LocalDate value.
|
Inserter |
Inserter.add(java.time.LocalDateTime value) |
Sets the current TIMESTAMP field to the given value.
|
Inserter |
Inserter.add(java.time.LocalTime value) |
Sets the current TIME field to the given value.
|
Inserter |
Inserter.add(java.time.OffsetDateTime value) |
Sets the current TIMESTAMPTZ field to the given value.
|
Inserter |
Inserter.add(java.time.ZonedDateTime value) |
Sets the current TIMESTAMPTZ field to the given value.
|
Inserter |
Inserter.add(java.util.Date value) |
Sets the current TIMESTAMP or TIMESTAMPTZ field to the given java.util.Date value.
|
Inserter |
Inserter.addDate(int year,
int month,
int day) |
Sets the current DATE field to the given value.
|
Inserter |
Inserter.addInterval(int years,
int months,
int days,
int hours,
int minutes,
int seconds,
int microseconds) |
Sets the current INTERVAL field to the given value.
|
Inserter |
Inserter.addNull() |
Sets the current field to null.
|
Inserter |
Inserter.addTime(int hour,
int minute,
int second) |
Sets the current TIME field to the given value.
|
Inserter |
Inserter.addTime(int hour,
int minute,
int second,
int microsecond) |
Sets the current TIME field to the given value.
|
Inserter |
Inserter.addTimestamp(int year,
int month,
int day,
int hour,
int minute,
int second,
int microsecond) |
Sets the current TIMESTAMP or TIMESTAMPTZ field to the given value.
|
Inserter |
Inserter.endRow() |
Advances the inserter to the next row.
|