Modifier and Type | Method and Description |
---|---|
default UdtValue |
GettableById.getUdtValue(CqlIdentifier id)
Returns the value for the first occurrence of
id as a user defined type value. |
default UdtValue |
GettableByIndex.getUdtValue(int i)
Returns the
i th value as a user defined type value. |
default UdtValue |
GettableByName.getUdtValue(String name)
Returns the value for the first occurrence of
name as a user defined type value. |
Modifier and Type | Method and Description |
---|---|
default SelfT |
SettableById.setUdtValue(CqlIdentifier id,
UdtValue v)
Sets the value for all occurrences of
id to the provided user defined type value. |
default SelfT |
SettableByIndex.setUdtValue(int i,
UdtValue v)
Sets the
i th value to the provided user defined type value. |
default SelfT |
SettableByName.setUdtValue(String name,
UdtValue v)
Sets the value for all occurrences of
name to the provided user defined type value. |
Modifier and Type | Method and Description |
---|---|
UdtValue |
UserDefinedType.newValue() |
UdtValue |
UserDefinedType.newValue(Object... fields)
Creates a new instance with the specified values for the fields.
|
Modifier and Type | Method and Description |
---|---|
static TypeCodec<UdtValue> |
TypeCodecs.udtOf(UserDefinedType cqlType)
Builds a new codec that maps a CQL user defined type to the driver's
UdtValue , for the
given type definition. |
Modifier and Type | Field and Description |
---|---|
static GenericType<UdtValue> |
GenericType.UDT_VALUE |
Copyright © 2017–2024. All rights reserved.