Class InnerJoin
- java.lang.Object
-
- org.eclipse.rdf4j.sail.shacl.ast.planNodes.InnerJoin
-
- All Implemented Interfaces:
MultiStreamPlanNode
,PlanNode
public class InnerJoin extends java.lang.Object implements MultiStreamPlanNode, PlanNode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
InnerJoin.NotifyingPushablePlanNode
-
Field Summary
Fields Modifier and Type Field Description private InnerJoin.NotifyingPushablePlanNode
discardedLeft
private InnerJoin.NotifyingPushablePlanNode
discardedRight
private CloseableIteration<ValidationTuple,SailException>
iterator
private InnerJoin.NotifyingPushablePlanNode
joined
private PlanNode
left
private static org.slf4j.Logger
logger
private boolean
printed
private PlanNode
right
private java.lang.StackTraceElement[]
stackTrace
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
int
depth()
PlanNode
getDiscardedLeft(java.lang.Class<? extends PushablePlanNode> type)
PlanNode
getDiscardedRight(java.lang.Class<? extends PushablePlanNode> type)
java.lang.String
getId()
PlanNode
getJoined(java.lang.Class<? extends PushablePlanNode> type)
void
getPlanAsGraphvizDot(java.lang.StringBuilder stringBuilder)
boolean
incrementIterator()
void
init()
CloseableIteration<ValidationTuple,SailException>
internalIterator()
CloseableIteration<? extends ValidationTuple,SailException>
iterator()
private java.lang.String
leadingSpace()
java.util.List<PlanNode>
parent()
boolean
producesSorted()
void
receiveLogger(ValidationExecutionLogger validationExecutionLogger)
boolean
requiresSorted()
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.rdf4j.sail.shacl.ast.planNodes.PlanNode
isGuaranteedEmpty
-
-
-
-
Field Detail
-
logger
private static final org.slf4j.Logger logger
-
stackTrace
private java.lang.StackTraceElement[] stackTrace
-
printed
private boolean printed
-
left
private final PlanNode left
-
right
private final PlanNode right
-
iterator
private CloseableIteration<ValidationTuple,SailException> iterator
-
joined
private InnerJoin.NotifyingPushablePlanNode joined
-
discardedLeft
private InnerJoin.NotifyingPushablePlanNode discardedLeft
-
discardedRight
private InnerJoin.NotifyingPushablePlanNode discardedRight
-
-
Method Detail
-
parent
public java.util.List<PlanNode> parent()
-
getJoined
public PlanNode getJoined(java.lang.Class<? extends PushablePlanNode> type)
-
getDiscardedLeft
public PlanNode getDiscardedLeft(java.lang.Class<? extends PushablePlanNode> type)
-
getDiscardedRight
public PlanNode getDiscardedRight(java.lang.Class<? extends PushablePlanNode> type)
-
iterator
public CloseableIteration<? extends ValidationTuple,SailException> iterator()
-
internalIterator
public CloseableIteration<ValidationTuple,SailException> internalIterator()
-
getPlanAsGraphvizDot
public void getPlanAsGraphvizDot(java.lang.StringBuilder stringBuilder)
- Specified by:
getPlanAsGraphvizDot
in interfacePlanNode
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
leadingSpace
private java.lang.String leadingSpace()
-
init
public void init()
- Specified by:
init
in interfaceMultiStreamPlanNode
-
close
public void close()
- Specified by:
close
in interfaceMultiStreamPlanNode
-
incrementIterator
public boolean incrementIterator()
- Specified by:
incrementIterator
in interfaceMultiStreamPlanNode
-
receiveLogger
public void receiveLogger(ValidationExecutionLogger validationExecutionLogger)
- Specified by:
receiveLogger
in interfacePlanNode
-
producesSorted
public boolean producesSorted()
- Specified by:
producesSorted
in interfacePlanNode
-
requiresSorted
public boolean requiresSorted()
- Specified by:
requiresSorted
in interfacePlanNode
-
-