Uses of Interface
com.github.nosan.embedded.cassandra.cql.CqlScript
-
Packages that use CqlScript Package Description com.github.nosan.embedded.cassandra.cql CQL classes. -
-
Uses of CqlScript in com.github.nosan.embedded.cassandra.cql
Subinterfaces of CqlScript in com.github.nosan.embedded.cassandra.cql Modifier and Type Interface Description interfaceCqlDataSetACqlDataSetrepresents a collection ofCqlScriptinstances, providing functionality to group and manage multiple CQL scripts that can be executed sequentially.Classes in com.github.nosan.embedded.cassandra.cql that implement CqlScript Modifier and Type Class Description classAbstractCqlScriptAn abstract implementation of theCqlScriptinterface that facilitates parsing a CQL (Cassandra Query Language) script into individual statements.classDefaultCqlDataSetDefault implementation of theCqlDataSetinterface.classResourceCqlScriptclassStatementsCqlScriptACqlScriptimplementation that wraps a predefined list of CQL statements.classStringCqlScriptACqlScriptimplementation that encapsulates a CQL script as a plain string.Methods in com.github.nosan.embedded.cassandra.cql that return CqlScript Modifier and Type Method Description static CqlScriptCqlScript. ofClassPath(String name)static CqlScriptCqlScript. ofClassPath(String name, Charset charset)static CqlScriptCqlScript. ofResource(Resource resource)static CqlScriptCqlScript. ofResource(Resource resource, Charset charset)static CqlScriptCqlScript. ofStatements(String... statements)Creates aCqlScriptinstance from an array of CQL statements.static CqlScriptCqlScript. ofStatements(List<? extends String> statements)Methods in com.github.nosan.embedded.cassandra.cql that return types with arguments of type CqlScript Modifier and Type Method Description List<? extends CqlScript>CqlDataSet. getScripts()Retrieves all theCqlScriptinstances contained within thisCqlDataSet.List<CqlScript>DefaultCqlDataSet. getScripts()Gets the list ofCqlScriptinstances contained within this dataset.Methods in com.github.nosan.embedded.cassandra.cql with parameters of type CqlScript Modifier and Type Method Description CqlDataSet.BuilderCqlDataSet.Builder. addScript(CqlScript script)Adds aCqlScriptto the builder.static CqlDataSetCqlDataSet. ofScripts(CqlScript... scripts)Creates aCqlDataSetfrom the specifiedCqlScriptinstances.Method parameters in com.github.nosan.embedded.cassandra.cql with type arguments of type CqlScript Modifier and Type Method Description default voidCqlDataSet. forEachScript(Consumer<? super CqlScript> callback)Constructor parameters in com.github.nosan.embedded.cassandra.cql with type arguments of type CqlScript Constructor Description DefaultCqlDataSet(Collection<? extends CqlScript> scripts)Creates a new immutableDefaultCqlDataSetwith the specified CQL scripts.
-