B - The actual builder type.public interface PreparedPgqlQueryBuilder<B extends PreparedPgqlQueryBuilder<B>>
extends oracle.pgx.api.subgraph.internal.PreparedQueryBuilder<B>
| Modifier and Type | Method and Description |
|---|---|
default B |
withBooleanArg(int position, boolean value)
Set a
boolean argument for the prepared query. |
default B |
withDateArg(int position, java.time.LocalDate value)
Set a
date argument for the prepared query. |
default B |
withDoubleArg(int position, double value)
Set a
double argument for the prepared query. |
default B |
withFloatArg(int position, float value)
Set a
float argument for the prepared query. |
default B |
withIntegerArg(int position, int value)
Set an
int argument for the prepared query. |
default B |
withLongArg(int position, long value)
Set a
long argument for the prepared query. |
default B |
withStringArg(int position, java.lang.String value)
Set a
String argument for the prepared query. |
default B |
withTimeArg(int position, java.time.LocalTime value)
Set a
time argument for the prepared query. |
default B |
withTimestampArg(int position, java.time.LocalDateTime value)
Set a
timestamp argument for the prepared query. |
default B |
withTimestampWithTimezoneArg(int position, java.time.OffsetDateTime value)
Set a
timestamp (with timezone) argument for the prepared query. |
default B |
withTimeWithTimezoneArg(int position, java.time.OffsetTime value)
Set a
time (with timezone) argument for the prepared query. |
default B withBooleanArg(int position, boolean value)
boolean argument for the prepared query.position - The position of the argument (1-based).value - The boolean value.default B withDateArg(int position, java.time.LocalDate value)
date argument for the prepared query.position - The position of the argument (1-based).value - The date value.default B withDoubleArg(int position, double value)
double argument for the prepared query.position - The position of the argument (1-based).value - The double value.default B withFloatArg(int position, float value)
float argument for the prepared query.position - The position of the argument (1-based).value - The float value.default B withIntegerArg(int position, int value)
int argument for the prepared query.position - The position of the argument (1-based).value - The int value.default B withLongArg(int position, long value)
long argument for the prepared query.position - The position of the argument (1-based).value - The long value.default B withStringArg(int position, java.lang.String value)
String argument for the prepared query.position - The position of the argument (1-based).value - The String value.default B withTimeArg(int position, java.time.LocalTime value)
time argument for the prepared query.position - The position of the argument (1-based).value - The time value.default B withTimestampArg(int position, java.time.LocalDateTime value)
timestamp argument for the prepared query.position - The position of the argument (1-based).value - The timestamp value.default B withTimestampWithTimezoneArg(int position, java.time.OffsetDateTime value)
timestamp (with timezone) argument for the prepared query.position - The position of the argument (1-based).value - The timestamp (with timezone) value.default B withTimeWithTimezoneArg(int position, java.time.OffsetTime value)
time (with timezone) argument for the prepared query.position - The position of the argument (1-based).value - The time (with timezone) value.