Class PropertyMapStep<K,E>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.map.MapStep<S,E>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.map.ScalarMapStep<Element,Map<K,E>>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.map.PropertyMapStep<K,E>
-
- All Implemented Interfaces:
Serializable,AutoCloseable,Cloneable,Iterator<Traverser.Admin<Map<K,E>>>,Step<Element,Map<K,E>>,ByModulating,Configuring,Parameterizing,TraversalParent
public class PropertyMapStep<K,E> extends ScalarMapStep<Element,Map<K,E>> implements TraversalParent, ByModulating, Configuring
- Author:
- Marko A. Rodriguez (http://markorodriguez.com), Daniel Kuppitz (http://gremlin.guru)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String[]propertyKeysprotected Traversal.Admin<Element,? extends Property>propertyTraversalprotected PropertyTypereturnTypeprotected inttokens-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
-
-
Constructor Summary
Constructors Constructor Description PropertyMapStep(Traversal.Admin traversal, int options, PropertyType propertyType, String... propertyKeys)PropertyMapStep(Traversal.Admin traversal, PropertyType propertyType, String... propertyKeys)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyMapStep<K,E>clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voidconfigure(Object... keyValues)Accept a configuration to theStep.intgetIncludedTokens()List<Traversal.Admin<K,E>>getLocalChildren()ParametersgetParameters()Gets the parameters on the step.String[]getPropertyKeys()Set<TraverserRequirement>getRequirements()Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.PropertyTypegetReturnType()inthashCode()protected Map<K,E>map(Traverser.Admin<Element> traverser)voidmodulateBy(Traversal.Admin<?,?> selectTraversal)voidsetPropertyTraversal(Traversal.Admin<Element,? extends Property> propertyTraversal)voidsetTraversal(Traversal.Admin<?,?> parentTraversal)Set theTraversalthat this step is contained within.StringtoString()-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.map.ScalarMapStep
processNextStart
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, reset, setId, setNextStep, setPreviousStep
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ByModulating
modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
addGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
-
-
-
-
Field Detail
-
propertyKeys
protected final String[] propertyKeys
-
returnType
protected final PropertyType returnType
-
tokens
protected int tokens
-
propertyTraversal
protected Traversal.Admin<Element,? extends Property> propertyTraversal
-
-
Constructor Detail
-
PropertyMapStep
public PropertyMapStep(Traversal.Admin traversal, PropertyType propertyType, String... propertyKeys)
-
PropertyMapStep
public PropertyMapStep(Traversal.Admin traversal, int options, PropertyType propertyType, String... propertyKeys)
-
-
Method Detail
-
map
protected Map<K,E> map(Traverser.Admin<Element> traverser)
-
configure
public void configure(Object... keyValues)
Description copied from interface:ConfiguringAccept a configuration to theStep. Note that this interface extendsParameterizingand so there is an expectation that theStepimplementation will have aParametersinstance that will house any values passed to this method. Storing these configurations inParametersis not a requirement however, IF the configuration is an expected option for the step and can be stored on a member field that can be accessed on the step by more direct means (i.e. like a getter method).- Specified by:
configurein interfaceConfiguring
-
getParameters
public Parameters getParameters()
Description copied from interface:ParameterizingGets the parameters on the step.- Specified by:
getParametersin interfaceParameterizing
-
getLocalChildren
public List<Traversal.Admin<K,E>> getLocalChildren()
- Specified by:
getLocalChildrenin interfaceTraversalParent
-
modulateBy
public void modulateBy(Traversal.Admin<?,?> selectTraversal)
- Specified by:
modulateByin interfaceByModulating
-
setPropertyTraversal
public void setPropertyTraversal(Traversal.Admin<Element,? extends Property> propertyTraversal)
-
getReturnType
public PropertyType getReturnType()
-
getPropertyKeys
public String[] getPropertyKeys()
-
clone
public PropertyMapStep<K,E> clone()
Description copied from interface:StepCloning 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 whenStep.reset()is called. Moreover, the previous and next steps should be set toEmptyStep.
-
setTraversal
public void setTraversal(Traversal.Admin<?,?> parentTraversal)
Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
setTraversalin interfaceStep<K,E>- Overrides:
setTraversalin classAbstractStep<Element,Map<K,E>>- Parameters:
parentTraversal- the new traversal for this step
-
getRequirements
public Set<TraverserRequirement> getRequirements()
Description copied from interface:StepProvide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Specified by:
getRequirementsin interfaceStep<K,E>- Returns:
- the set of requirements
-
getIncludedTokens
public int getIncludedTokens()
-
-