public abstract class GraphStatement extends Object
Constructor and Description |
---|
GraphStatement() |
Modifier and Type | Method and Description |
---|---|
abstract ConsistencyLevel |
getConsistencyLevel()
Returns the consistency level to use with this statement.
|
abstract long |
getDefaultTimestamp()
The default timestamp for this query.
|
String |
getGraphInternalOption(String optionKey)
Returns the advanced option's value defined for the key in parameter.
|
String |
getGraphLanguage()
Returns the graph language to use with this statement.
|
String |
getGraphName()
Returns the graph name to use with this statement.
|
ConsistencyLevel |
getGraphReadConsistencyLevel()
Returns the read consistency level to use with this statement.
|
String |
getGraphSource()
Returns the graph traversal source name to use with this statement.
|
ConsistencyLevel |
getGraphWriteConsistencyLevel()
Returns the write consistency level to use with this statement.
|
abstract int |
getReadTimeoutMillis()
Return the per-host socket read timeout that was set for this statement.
|
Boolean |
isIdempotent()
Whether this statement is idempotent, i.e.
|
boolean |
isSystemQuery()
Returns whether this statement is marked as a system query.
|
abstract GraphStatement |
setConsistencyLevel(ConsistencyLevel consistencyLevel)
Sets the consistency level to use for this statement.
|
abstract GraphStatement |
setDefaultTimestamp(long defaultTimestamp)
Sets the default timestamp for this query (in microseconds since the epoch).
|
GraphStatement |
setGraphInternalOption(String optionKey,
String optionValue)
Sets additional graph option.
|
GraphStatement |
setGraphLanguage(String graphLanguage)
Sets the graph language to use with this statement.
|
GraphStatement |
setGraphName(String graphName)
Sets the graph name to use with this statement.
|
GraphStatement |
setGraphReadConsistencyLevel(ConsistencyLevel consistencyLevel)
Sets the read consistency level to use for this statement.
|
GraphStatement |
setGraphSource(String graphSource)
Sets the graph traversal source name to use with this statement.
|
GraphStatement |
setGraphWriteConsistencyLevel(ConsistencyLevel consistencyLevel)
Sets the write consistency level to use for this statement.
|
GraphStatement |
setIdempotent(boolean idempotent)
Sets whether this statement is idempotent.
|
abstract GraphStatement |
setReadTimeoutMillis(int readTimeoutMillis)
Overrides the default per-host read timeout (
GraphOptions.setReadTimeoutMillis(int) ) for this statement. |
GraphStatement |
setSystemQuery()
Forces this statement to use no graph name, even if a default graph name was defined with
GraphOptions.setGraphName(String) . |
abstract Statement |
unwrap()
"Unwraps" the current graph statement, that is,
returns an executable
Statement object corresponding to this graph statement. |
public String getGraphLanguage()
setGraphLanguage(String)
public GraphStatement setGraphLanguage(String graphLanguage)
GraphOptions.getGraphLanguage()
will be
used when executing the statement.graphLanguage
- the Graph language to use with this statement.GraphStatement
instance (for method chaining).public String getGraphSource()
setGraphSource(String)
public GraphStatement setGraphSource(String graphSource)
GraphOptions.getGraphSource()
will be
used when executing the statement.graphSource
- the graph traversal source name to use with this statement.GraphStatement
instance (for method chaining).public String getGraphName()
getGraphName()
public GraphStatement setGraphName(String graphName)
GraphOptions.getGraphName()
(which may
itself be unset) will be used when executing the statement.
If a default name is set on the global options, but this statement is a system query that you explicitly want to
run without a graph name, use setSystemQuery()
.
If setSystemQuery()
was called on this statement previously, setting a graph name forces the statement
to be a non-system query again.graphName
- the graph name to use with this statement.GraphStatement
instance (for method chaining).public GraphStatement setSystemQuery()
GraphOptions.setGraphName(String)
.
If a graph name was previously defined on this statement, it will be reset.GraphStatement
instance (for method chaining).public boolean isSystemQuery()
public ConsistencyLevel getGraphReadConsistencyLevel()
public GraphStatement setGraphReadConsistencyLevel(ConsistencyLevel consistencyLevel)
setConsistencyLevel(ConsistencyLevel)
only for the READ part of the graph query.
Please see setConsistencyLevel(ConsistencyLevel)
for more information.consistencyLevel
- the consistency level to set.GraphStatement
instance (for method chaining).public GraphStatement setIdempotent(boolean idempotent)
idempotent
- the new value.Statement
object.Statement.isIdempotent()
public Boolean isIdempotent()
null
if it uses the default
QueryOptions.getDefaultIdempotence()
.Statement.setIdempotent(boolean)
public ConsistencyLevel getGraphWriteConsistencyLevel()
public GraphStatement setGraphWriteConsistencyLevel(ConsistencyLevel consistencyLevel)
setConsistencyLevel(ConsistencyLevel)
only for the write part of the graph query.
Please see setConsistencyLevel(ConsistencyLevel)
for more information.consistencyLevel
- the consistency level to set.GraphStatement
instance (for method chaining).public GraphStatement setGraphInternalOption(String optionKey, String optionValue)
optionKey
- the option's name.optionValue
- the option's value. The value is always a String and will be interpreted to the right type
by the DSE server. To unset a value previously set you can put null
as the option's value.GraphStatement
instance (for method chaining).public String getGraphInternalOption(String optionKey)
optionKey
- the name of the option.null
(see setGraphInternalOption(java.lang.String, java.lang.String)
), this method
returns null
.public abstract GraphStatement setConsistencyLevel(ConsistencyLevel consistencyLevel)
setGraphReadConsistencyLevel(ConsistencyLevel)
and
setGraphWriteConsistencyLevel(ConsistencyLevel)
and will override the consistency set here.consistencyLevel
- the consistency level to set.GraphStatement
instance (for method chaining).public abstract ConsistencyLevel getConsistencyLevel()
setConsistencyLevel(ConsistencyLevel)
for more information.public abstract GraphStatement setDefaultTimestamp(long defaultTimestamp)
Long.MIN_VALUE
;TimestampGenerator
currently in use,
if different from Long.MIN_VALUE
.defaultTimestamp
- the default timestamp for this query (must be strictly
positive).GraphStatement
instance (for method chaining).DseCluster.Builder.withTimestampGenerator(com.datastax.driver.core.TimestampGenerator)
public abstract long getDefaultTimestamp()
public abstract int getReadTimeoutMillis()
GraphOptions.getReadTimeoutMillis()
will be used.public abstract GraphStatement setReadTimeoutMillis(int readTimeoutMillis)
GraphOptions.setReadTimeoutMillis(int)
) for this statement.
If you don't call this method, the default GraphOptions.getReadTimeoutMillis()
will be used.readTimeoutMillis
- the timeout to set. 0
will disable the timeout for the query, negative values
are not allowed.GraphOptions
instance (for method chaining).public abstract Statement unwrap()
Statement
object corresponding to this graph statement.
This method is intended for internal use only, users wishing to execute graph statements
should use DseSession.executeGraph(GraphStatement)
.
This method acts as a bridge between graph statements and
regular Statement
s.
Implementations are free to cache the returned Statement
if appropriate.Statement
.