Package | Description |
---|---|
ra.db |
Modifier and Type | Method and Description |
---|---|
static ParameterValue |
ParameterValue.array(java.lang.String typeName,
java.lang.Object[] elements)
Creates a
ParameterValue object with a type of Array. |
static ParameterValue |
ParameterValue.bigNumeric(java.math.BigDecimal value)
Creates a
ParameterValue object with a type of BigDecimal. |
static ParameterValue |
ParameterValue.blob(java.sql.Blob value)
Creates a
ParameterValue object with a type of Blob. |
static ParameterValue |
ParameterValue.bool(java.lang.Boolean value)
Creates a
ParameterValue object with a type of Boolean. |
ParameterValue |
ParameterValue.Builder.build()
Build.
|
static ParameterValue |
ParameterValue.bytes(byte[] value)
Creates a
ParameterValue object with a type of byte[]. |
static ParameterValue |
ParameterValue.float64(java.lang.Double value)
Creates a
ParameterValue object with a type of Double. |
static ParameterValue |
ParameterValue.float64(java.lang.Float value)
Creates a
ParameterValue object with a type of Float. |
static ParameterValue |
ParameterValue.int64(java.lang.Integer value)
Creates a
ParameterValue object with a type of Integer. |
static ParameterValue |
ParameterValue.int64(java.lang.Long value)
Creates a
ParameterValue object with a type of Long. |
static <T> ParameterValue |
ParameterValue.of(T value,
java.lang.Class<?> type)
Creates a
ParameterValue object with the given value and type. |
static ParameterValue |
ParameterValue.string(java.lang.String value)
Creates a
ParameterValue object with a type of String. |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.Integer,ParameterValue> |
Prepared.getValues() |
Modifier and Type | Method and Description |
---|---|
Prepared.Builder |
Prepared.Builder.set(int index,
ParameterValue value) |