Module spring.data.cassandra
Class BasicCassandraRowValueProvider
java.lang.Object
org.springframework.data.cassandra.core.convert.RowValueProvider
org.springframework.data.cassandra.core.convert.BasicCassandraRowValueProvider
- All Implemented Interfaces:
CassandraValueProvider,PropertyValueProvider<CassandraPersistentProperty>
Deprecated, for removal: This API element is subject to removal in a future version.
CassandraValueProvider to read property values from a Row.- Author:
- Alex Shvid, Matthew T. Adams, David Webb, Mark Paluch
-
Constructor Summary
ConstructorsConstructorDescriptionBasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, com.datastax.oss.driver.api.core.type.codec.registry.CodecRegistry codecRegistry, SpELExpressionEvaluator evaluator) Deprecated, for removal: This API element is subject to removal in a future version.Create a newBasicCassandraRowValueProviderwith the givenRow,CodecRegistryandSpELExpressionEvaluator.BasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, DefaultSpELExpressionEvaluator evaluator) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Methods inherited from class org.springframework.data.cassandra.core.convert.RowValueProvider
getPropertyValue, getSource, hasProperty
-
Constructor Details
-
BasicCassandraRowValueProvider
public BasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, com.datastax.oss.driver.api.core.type.codec.registry.CodecRegistry codecRegistry, SpELExpressionEvaluator evaluator) Deprecated, for removal: This API element is subject to removal in a future version.Create a newBasicCassandraRowValueProviderwith the givenRow,CodecRegistryandSpELExpressionEvaluator.- Parameters:
source- must not be null.codecRegistry- must not be null.evaluator- must not be null.- Since:
- 2.1
-
BasicCassandraRowValueProvider
@Deprecated(forRemoval=true) public BasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, DefaultSpELExpressionEvaluator evaluator) Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
source- must not be null.evaluator- must not be null.
-
RowValueProvider.