Package com.arcadedb.query.sql.parser
Class ExplainResultSet
- java.lang.Object
-
- com.arcadedb.query.sql.parser.ExplainResultSet
-
- All Implemented Interfaces:
ResultSet
,AutoCloseable
,Iterator<Result>
,Spliterator<Result>
public class ExplainResultSet extends Object implements ResultSet
Created by luigidellaquila on 08/07/16.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface java.util.Spliterator
Spliterator.OfDouble, Spliterator.OfInt, Spliterator.OfLong, Spliterator.OfPrimitive<T extends Object,T_CONS extends Object,T_SPLITR extends Spliterator.OfPrimitive<T,T_CONS,T_SPLITR>>
-
-
Field Summary
-
Fields inherited from interface com.arcadedb.query.sql.executor.ResultSet
EMPTY_RESULT
-
Fields inherited from interface java.util.Spliterator
CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED
-
-
Constructor Summary
Constructors Constructor Description ExplainResultSet(ExecutionPlan executionPlan)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<ExecutionPlan>
getExecutionPlan()
boolean
hasNext()
Result
next()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.arcadedb.query.sql.executor.ResultSet
characteristics, close, copy, edgeStream, elementStream, estimateSize, forEachRemaining, nextIfAvailable, remove, reset, stream, toDocuments, toEdges, toVertices, tryAdvance, trySplit, vertexStream
-
Methods inherited from interface java.util.Spliterator
getComparator, getExactSizeIfKnown, hasCharacteristics
-
-
-
-
Constructor Detail
-
ExplainResultSet
public ExplainResultSet(ExecutionPlan executionPlan)
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public Result next()
-
getExecutionPlan
public Optional<ExecutionPlan> getExecutionPlan()
- Specified by:
getExecutionPlan
in interfaceResultSet
-
-