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 interfaceCqlDataSetCqlDataSetrepresents the set ofCqlScript.Classes in com.github.nosan.embedded.cassandra.cql that implement CqlScript Modifier and Type Class Description classAbstractCqlScriptAbstractCqlScriptthat parses a CQL script into the statements.classDefaultCqlDataSetDefault implementation ofCqlDataSet.classResourceCqlScriptCqlScriptimplementation for resources.classStatementsCqlScriptCqlScriptimplementation for static statements.classStringCqlScriptCqlScriptimplementation for string scripts.Methods in com.github.nosan.embedded.cassandra.cql that return CqlScript Modifier and Type Method Description static CqlScriptCqlScript. ofClassPath(String name)CreatesCqlScriptwith the specified resource name and default charset.static CqlScriptCqlScript. ofClassPath(String name, Charset charset)CreatesCqlScriptwith the specified resource name and charset.static CqlScriptCqlScript. ofResource(Resource resource)CreatesCqlScriptwith the specified resource and default charset.static CqlScriptCqlScript. ofResource(Resource resource, Charset charset)CreatesCqlScriptwith the specified resources and charset.static CqlScriptCqlScript. ofStatements(String... statements)CreatesCqlScriptwith the specified statements.static CqlScriptCqlScript. ofStatements(List<? extends String> statements)CreatesCqlScriptwith the specified 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()GetsCQLscripts.List<CqlScript>DefaultCqlDataSet. getScripts()Methods in com.github.nosan.embedded.cassandra.cql with parameters of type CqlScript Modifier and Type Method Description CqlDataSet.BuilderCqlDataSet.Builder. addScript(CqlScript script)AddCqlScriptto the builder.static CqlDataSetCqlDataSet. ofScripts(CqlScript... scripts)CreatesCqlDataSetwith the specified CQL scripts.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)Performs the givencallbackfor each script of theCqlDataSet.Constructor parameters in com.github.nosan.embedded.cassandra.cql with type arguments of type CqlScript Constructor Description DefaultCqlDataSet(Collection<? extends CqlScript> scripts)Creates a newDefaultCqlDataSetwith the specified CQL scripts.
-