Module spring.data.cassandra
Enum Class SimpleTupleTypeFactory
java.lang.Object
java.lang.Enum<SimpleTupleTypeFactory>
org.springframework.data.cassandra.core.mapping.SimpleTupleTypeFactory
- All Implemented Interfaces:
Serializable,Comparable<SimpleTupleTypeFactory>,Constable,TupleTypeFactory
@Deprecated(forRemoval=true)
public enum SimpleTupleTypeFactory
extends Enum<SimpleTupleTypeFactory>
implements TupleTypeFactory
Deprecated, for removal: This API element is subject to removal in a future version.
- Since:
- 3.0
- Author:
- Mark Paluch
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.DefaultSimpleTupleTypeFactoryusing newest protocol versions and the defaultCodecRegistry. -
Method Summary
Modifier and TypeMethodDescriptioncom.datastax.oss.driver.api.core.type.TupleTypecreate(com.datastax.oss.driver.api.core.type.DataType... types) Deprecated, for removal: This API element is subject to removal in a future version.Create aTupleTyperepresenting the giventuple element types.com.datastax.oss.driver.api.core.type.TupleTypeDeprecated, for removal: This API element is subject to removal in a future version.Create aTupleTyperepresenting the giventuple element types.static SimpleTupleTypeFactoryDeprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name.static SimpleTupleTypeFactory[]values()Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Deprecated, for removal: This API element is subject to removal in a future version.DefaultSimpleTupleTypeFactoryusing newest protocol versions and the defaultCodecRegistry.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
create
public com.datastax.oss.driver.api.core.type.TupleType create(com.datastax.oss.driver.api.core.type.DataType... types) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:TupleTypeFactoryCreate aTupleTyperepresenting the giventuple element types.- Specified by:
createin interfaceTupleTypeFactory- Parameters:
types- must not be null and not contain null elements.- Returns:
- the
TupleTyperepresenting the giventuple element types.
-
create
public com.datastax.oss.driver.api.core.type.TupleType create(List<com.datastax.oss.driver.api.core.type.DataType> types) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:TupleTypeFactoryCreate aTupleTyperepresenting the giventuple element types.- Specified by:
createin interfaceTupleTypeFactory- Parameters:
types- must not be null.- Returns:
- the
TupleTyperepresenting the giventuple element types.
-
TupleTypeFactory.