Class AbstractCqlScript
- java.lang.Object
-
- com.github.nosan.embedded.cassandra.cql.AbstractCqlScript
-
- All Implemented Interfaces:
CqlScript
- Direct Known Subclasses:
ResourceCqlScript,StringCqlScript
public abstract class AbstractCqlScript extends Object implements CqlScript
AbstractCqlScriptthat parses a CQL script into the statements.- Since:
- 4.0.0
- Author:
- Dmytro Nosan
-
-
Constructor Summary
Constructors Constructor Description AbstractCqlScript()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getStatements()GetsCQLstatements.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.nosan.embedded.cassandra.cql.CqlScript
forEachStatement
-
-
-
-
Method Detail
-
getStatements
public final List<String> getStatements()
Description copied from interface:CqlScriptGetsCQLstatements.- Specified by:
getStatementsin interfaceCqlScript- Returns:
CQLstatements (never null)
-
-