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