Param<?> |
DefaultDSLContext.extractParam(QueryPart part,
String name) |
|
static Param<Boolean> |
DSL.inline(boolean value) |
Create a bind value that is always inlined.
|
static Param<Byte> |
DSL.inline(byte value) |
Create a bind value that is always inlined.
|
static Param<byte[]> |
DSL.inline(byte[] value) |
Create a bind value that is always inlined.
|
static Param<String> |
DSL.inline(char character) |
Create a bind value, that is always inlined.
|
static Param<Double> |
DSL.inline(double value) |
Create a bind value that is always inlined.
|
static Param<Float> |
DSL.inline(float value) |
Create a bind value that is always inlined.
|
static Param<Integer> |
DSL.inline(int value) |
Create a bind value that is always inlined.
|
static Param<Long> |
DSL.inline(long value) |
Create a bind value that is always inlined.
|
static Param<Short> |
DSL.inline(short value) |
Create a bind value that is always inlined.
|
static Param<Boolean> |
DSL.inline(Boolean value) |
Create a bind value that is always inlined.
|
static Param<Byte> |
DSL.inline(Byte value) |
Create a bind value that is always inlined.
|
static Param<String> |
DSL.inline(Character character) |
Create a bind value, that is always inlined.
|
static Param<String> |
DSL.inline(CharSequence character) |
Create a bind value, that is always inlined.
|
static Param<Double> |
DSL.inline(Double value) |
Create a bind value that is always inlined.
|
static Param<Float> |
DSL.inline(Float value) |
Create a bind value that is always inlined.
|
static Param<Integer> |
DSL.inline(Integer value) |
Create a bind value that is always inlined.
|
static Param<Long> |
DSL.inline(Long value) |
Create a bind value that is always inlined.
|
static <T> Param<T> |
DSL.inline(Object value,
Class<T> type) |
Create a bind value, that is always inlined.
|
static <T> Param<T> |
DSL.inline(Object value,
DataType<T> type) |
Create a bind value, that is always inlined.
|
static <T> Param<T> |
DSL.inline(Object value,
Field<T> field) |
Create a bind value, that is always inlined.
|
static Param<Short> |
DSL.inline(Short value) |
Create a bind value that is always inlined.
|
static Param<String> |
DSL.inline(String value) |
Create a bind value that is always inlined.
|
static Param<BigDecimal> |
DSL.inline(BigDecimal value) |
Create a bind value that is always inlined.
|
static Param<BigInteger> |
DSL.inline(BigInteger value) |
Create a bind value that is always inlined.
|
static Param<Date> |
DSL.inline(Date value) |
Create a bind value that is always inlined.
|
static Param<Time> |
DSL.inline(Time value) |
Create a bind value that is always inlined.
|
static Param<Timestamp> |
DSL.inline(Timestamp value) |
Create a bind value that is always inlined.
|
static Param<Instant> |
DSL.inline(Instant value) |
Create a bind value that is always inlined.
|
static Param<LocalDate> |
DSL.inline(LocalDate value) |
Create a bind value that is always inlined.
|
static Param<LocalDateTime> |
DSL.inline(LocalDateTime value) |
Create a bind value that is always inlined.
|
static Param<LocalTime> |
DSL.inline(LocalTime value) |
Create a bind value that is always inlined.
|
static Param<OffsetDateTime> |
DSL.inline(OffsetDateTime value) |
Create a bind value that is always inlined.
|
static Param<OffsetTime> |
DSL.inline(OffsetTime value) |
Create a bind value that is always inlined.
|
static Param<UUID> |
DSL.inline(UUID value) |
Create a bind value that is always inlined.
|
static Param<UByte> |
DSL.inline(UByte value) |
Create a bind value that is always inlined.
|
static Param<UInteger> |
DSL.inline(UInteger value) |
Create a bind value that is always inlined.
|
static Param<ULong> |
DSL.inline(ULong value) |
Create a bind value that is always inlined.
|
static Param<UShort> |
DSL.inline(UShort value) |
Create a bind value that is always inlined.
|
static <T> Param<T> |
DSL.inline(T value) |
Create a bind value, that is always inlined.
|
static Param<Integer> |
DSL.one() |
A 1 literal.
|
static <T> Param<Object> |
DSL.param() |
|
static <T> Param<T> |
DSL.param(Class<T> type) |
Create an unnamed parameter with a defined type and no initial value.
|
static Param<Object> |
DSL.param(String name) |
|
static <T> Param<T> |
DSL.param(String name,
Class<T> type) |
Create a named parameter with a defined type and no initial value.
|
static <T> Param<T> |
DSL.param(String name,
DataType<T> type) |
Create a named parameter with a defined type and no initial value.
|
static <T> Param<T> |
DSL.param(String name,
Field<T> type) |
Create a named parameter with a defined type of another field and no
initial value.
|
static <T> Param<T> |
DSL.param(String name,
T value) |
Create a named parameter with an initial value.
|
static <T> Param<T> |
DSL.param(DataType<T> type) |
Create an unnamed parameter with a defined type and no initial value.
|
static <T> Param<T> |
DSL.param(Field<T> field) |
Create an unnamed parameter with the defined type of another field and no
initial value.
|
static Param<Integer> |
DSL.two() |
A 2 literal.
|
static Param<Boolean> |
DSL.val(boolean value) |
Get a bind value.
|
static Param<Byte> |
DSL.val(byte value) |
Get a bind value.
|
static Param<byte[]> |
DSL.val(byte[] value) |
Get a bind value.
|
static Param<Double> |
DSL.val(double value) |
Get a bind value.
|
static Param<Float> |
DSL.val(float value) |
Get a bind value.
|
static Param<Integer> |
DSL.val(int value) |
Get a bind value.
|
static Param<Long> |
DSL.val(long value) |
Get a bind value.
|
static Param<Short> |
DSL.val(short value) |
Get a bind value.
|
static Param<Boolean> |
DSL.val(Boolean value) |
Get a bind value.
|
static Param<Byte> |
DSL.val(Byte value) |
Get a bind value.
|
static Param<Double> |
DSL.val(Double value) |
Get a bind value.
|
static Param<Float> |
DSL.val(Float value) |
Get a bind value.
|
static Param<Integer> |
DSL.val(Integer value) |
Get a bind value.
|
static Param<Long> |
DSL.val(Long value) |
Get a bind value.
|
static <T> Param<T> |
DSL.val(Object value,
Class<T> type) |
Get a bind value with an associated type, taken from a field.
|
static <T> Param<T> |
DSL.val(Object value,
DataType<T> type) |
Get a bind value with an associated type.
|
static <T> Param<T> |
DSL.val(Object value,
Field<T> field) |
Get a bind value with an associated type, taken from a field.
|
static Param<Short> |
DSL.val(Short value) |
Get a bind value.
|
static Param<String> |
DSL.val(String value) |
Get a bind value.
|
static Param<BigDecimal> |
DSL.val(BigDecimal value) |
Get a bind value.
|
static Param<BigInteger> |
DSL.val(BigInteger value) |
Get a bind value.
|
static Param<Date> |
DSL.val(Date value) |
Get a bind value.
|
static Param<Time> |
DSL.val(Time value) |
Get a bind value.
|
static Param<Timestamp> |
DSL.val(Timestamp value) |
Get a bind value.
|
static Param<Instant> |
DSL.val(Instant value) |
Get a bind value.
|
static Param<LocalDate> |
DSL.val(LocalDate value) |
Get a bind value.
|
static Param<LocalDateTime> |
DSL.val(LocalDateTime value) |
Get a bind value.
|
static Param<LocalTime> |
DSL.val(LocalTime value) |
Get a bind value.
|
static Param<OffsetDateTime> |
DSL.val(OffsetDateTime value) |
Get a bind value.
|
static Param<OffsetTime> |
DSL.val(OffsetTime value) |
Get a bind value.
|
static Param<UUID> |
DSL.val(UUID value) |
Get a bind value.
|
static Param<UByte> |
DSL.val(UByte value) |
Get a bind value.
|
static Param<UInteger> |
DSL.val(UInteger value) |
Get a bind value.
|
static Param<ULong> |
DSL.val(ULong value) |
Get a bind value.
|
static Param<UShort> |
DSL.val(UShort value) |
Get a bind value.
|
static <T> Param<T> |
DSL.val(T value) |
Get a bind value.
|
static Param<Boolean> |
DSL.value(boolean value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Byte> |
DSL.value(byte value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<byte[]> |
DSL.value(byte[] value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Double> |
DSL.value(double value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Float> |
DSL.value(float value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Integer> |
DSL.value(int value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Long> |
DSL.value(long value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Short> |
DSL.value(short value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Boolean> |
DSL.value(Boolean value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Byte> |
DSL.value(Byte value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Double> |
DSL.value(Double value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Float> |
DSL.value(Float value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Integer> |
DSL.value(Integer value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Long> |
DSL.value(Long value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static <T> Param<T> |
DSL.value(Object value,
Class<T> type) |
|
static <T> Param<T> |
DSL.value(Object value,
DataType<T> type) |
|
static <T> Param<T> |
DSL.value(Object value,
Field<T> field) |
|
static Param<Short> |
DSL.value(Short value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<String> |
DSL.value(String value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<BigDecimal> |
DSL.value(BigDecimal value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<BigInteger> |
DSL.value(BigInteger value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Date> |
DSL.value(Date value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Time> |
DSL.value(Time value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Timestamp> |
DSL.value(Timestamp value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Instant> |
DSL.value(Instant value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<LocalDate> |
DSL.value(LocalDate value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<LocalDateTime> |
DSL.value(LocalDateTime value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<LocalTime> |
DSL.value(LocalTime value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<OffsetDateTime> |
DSL.value(OffsetDateTime value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<OffsetTime> |
DSL.value(OffsetTime value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<UUID> |
DSL.value(UUID value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<UByte> |
DSL.value(UByte value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<UInteger> |
DSL.value(UInteger value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<ULong> |
DSL.value(ULong value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<UShort> |
DSL.value(UShort value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static <T> Param<T> |
DSL.value(T value) |
A synonym for DSL.val(Object) to be used in Scala and Groovy, where
val is a reserved keyword.
|
static Param<Integer> |
DSL.zero() |
A 0 literal.
|