Class GremlinScriptChecker.Result
java.lang.Object
org.apache.tinkerpop.gremlin.jsr223.GremlinScriptChecker.Result
- Enclosing class:
- GremlinScriptChecker
A result returned from a
GremlinScriptChecker.parse(String) of a Gremlin string.-
Method Summary
Modifier and TypeMethodDescriptionGets the raw, unparsed value of the batchSize supplied using theGraphTraversal.with(String, Object)source step.Gets the value of the bulkResults flag supplied using theGraphTraversal.with(String, Object)source step.Gets the value of the language supplied using theGraphTraversal.with(String, Object)source step.Gets the value of the materializeProperties supplied using theGraphTraversal.with(String, Object)source step.Gets the value of the timeouts that were set using theGraphTraversal.with(String, Object)source step.toString()
-
Method Details
-
getTimeout
Gets the value of the timeouts that were set using theGraphTraversal.with(String, Object)source step. If there are multiple commands using this step, the timeouts are summed together. -
getMaterializeProperties
Gets the value of the materializeProperties supplied using theGraphTraversal.with(String, Object)source step. If there are multiple commands using this step, the last usage should represent the value returned here. -
getLanguage
Gets the value of the language supplied using theGraphTraversal.with(String, Object)source step. If there are multiple commands using this step, the last usage should represent the value returned here. -
getBatchSize
Gets the raw, unparsed value of the batchSize supplied using theGraphTraversal.with(String, Object)source step. It is returned as the raw string (rather than a parsed number) so that parsing and range validation happen where an invalid value can be surfaced as a bad request rather than an uncaught error. If there are multiple commands using this step, the last usage should represent the value returned here. -
getBulkResults
Gets the value of the bulkResults flag supplied using theGraphTraversal.with(String, Object)source step. If there are multiple commands using this step, the last usage should represent the value returned here. -
toString
-