java.lang.Object
org.springframework.data.cassandra.core.cql.generator.CqlGenerator

public final class CqlGenerator extends Object
Entrypoint for CQL generation of CqlSpecification objects representing DML statements such as table creations or keyspace drops. For example:
 DropUserTypeSpecification spec = SpecificationBuilder.dropType("address");
 String cql = CqlGenerator.toCql(spec);
 
Since:
4.4
Author:
Mark Paluch
See Also: