Class DisjunctStep<S,​E>

    • Method Detail

      • getParameterItems

        public Object getParameterItems()
      • getStepName

        public String getStepName()
        Description copied from interface: ListFunction
        Template method used for retrieving the implementing Step's name.
        Specified by:
        getStepName in interface ListFunction
        Returns:
        this step's name.
      • getLocalChildren

        public List<Traversal.Admin<S,​E>> getLocalChildren()
        Description copied from interface: TraversalParent
        Gets a list of all "local" child traversals for this step. A "local" traversal is one which is evaluated independently for each incoming traverser to the parent step. This is typically used in cases where the child is used to process or augment each traverser individually. See LocalStep or ByModulating as examples.
        Specified by:
        getLocalChildren in interface TraversalParent
      • getRequirements

        public Set<TraverserRequirement> getRequirements()
        Description copied from interface: Step
        Provide the necessary TraverserRequirement that must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.
        Specified by:
        getRequirements in interface Step<S,​E>
        Returns:
        the set of requirements
      • clone

        public DisjunctStep<S,​E> clone()
        Description copied from interface: Step
        Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication. When cloning a step, it is important that the steps, the cloned step is equivalent to the state of the step when Step.reset() is called. Moreover, the previous and next steps should be set to EmptyStep.
        Specified by:
        clone in interface Step<S,​E>
        Overrides:
        clone in class AbstractStep<S,​Set<?>>
        Returns:
        The cloned step