Class GremlinScriptChecker.Result
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.jsr223.GremlinScriptChecker.Result
-
- Enclosing class:
- GremlinScriptChecker
public static class GremlinScriptChecker.Result extends Object
A result returned from aGremlinScriptChecker.parse(String)
of a Gremlin string.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getMaterializeProperties()
Gets the value of the materializeProperties supplied using theGraphTraversal.with(String, Object)
source step.Optional<String>
getRequestId()
Gets the value of the request identifier supplied using theGraphTraversal.with(String, Object)
source step.Optional<Long>
getTimeout()
Gets the value of the timeouts that were set using theGraphTraversal.with(String, Object)
source step.String
toString()
-
-
-
Method Detail
-
getTimeout
public final Optional<Long> 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.
-
getRequestId
public Optional<String> getRequestId()
Gets the value of the request identifier supplied using theGraphTraversal.with(String, Object)
source step. If there are multiple commands using this step, the last usage should represent the id returned here.
-
getMaterializeProperties
public Optional<String> 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.
-
-