Class AddPropertyStepPlaceholder<S extends Element>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SideEffectStep<S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.AddPropertyStepPlaceholder<S>
-
- All Implemented Interfaces:
Serializable,AutoCloseable,Cloneable,Iterator<Traverser.Admin<S>>,Step<S,S>,Configuring,Deleting<Event.ElementPropertyChangedEvent>,GValueHolder<S,S>,Mutating<Event.ElementPropertyChangedEvent>,Parameterizing,PopContaining,PropertiesHolder,Scoping,AddPropertyStepContract<S>,TraversalParent,Writing<Event.ElementPropertyChangedEvent>
public class AddPropertyStepPlaceholder<S extends Element> extends SideEffectStep<S> implements AddPropertyStepContract<S>, GValueHolder<S,S>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.PopContaining
PopContaining.PopInstruction
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Scoping
Scoping.KeyNotFoundException, Scoping.Variable
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
-
Fields inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.AddPropertyStepContract
CONCRETE_STEPS
-
-
Constructor Summary
Constructors Constructor Description AddPropertyStepPlaceholder(Traversal.Admin traversal, VertexProperty.Cardinality cardinality, Object keyObject, Object valueObject)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddProperty(Object key, Object value)AddPropertyStep<S>asConcreteStep()AddPropertyStepPlaceholder<S>clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voidconfigure(Object... keyValues)Accept a configuration to theStep.booleanequals(Object o)VertexProperty.CardinalitygetCardinality()Collection<GValue<?>>getGValues()ObjectgetKey()Get the property keyList<Traversal.Admin<?,?>>getLocalChildren()Gets a list of all "local" child traversals for this step.CallbackRegistry<Event.ElementPropertyChangedEvent>getMutatingCallbackRegistry()Gets the callback registry for events that the step raises.ParametersgetParameters()Gets the parameters on the step.Map<Object,List<Object>>getProperties()Map<Object,List<Object>>getPropertiesWithGValues()Set<TraverserRequirement>getRequirements()Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.Set<String>getScopeKeys()Get the labels that this scoping step will access during the traversalObjectgetValue()Gets the property value.ObjectgetValueWithGValue()Get the value as-is, without unboxing GValues if present, and without pinning the variableinthashCode()booleanisParameterized()booleanremoveProperty(Object k)voidsetTraversal(Traversal.Admin<?,?> parentTraversal)Set theTraversalthat this step is contained within.protected voidsideEffect(Traverser.Admin<S> traverser)voidupdateVariable(String name, Object value)-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SideEffectStep
processNextStart
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, clearLabels, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, reset, setId, setNextStep, setPreviousStep, toString
-
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.sideEffect.AddPropertyStepContract
getPopInstructions
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.GValueHolder
reduce
-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Scoping
getNullableScopeValue, getSafeScopeValue, getScopeValue
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.Step
addLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getTraversal, hasStarts, removeLabel, reset, setId, setNextStep, setPreviousStep
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
addGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
-
-
-
-
Constructor Detail
-
AddPropertyStepPlaceholder
public AddPropertyStepPlaceholder(Traversal.Admin traversal, VertexProperty.Cardinality cardinality, Object keyObject, Object valueObject)
-
-
Method Detail
-
getScopeKeys
public Set<String> getScopeKeys()
Description copied from interface:ScopingGet the labels that this scoping step will access during the traversal- Specified by:
getScopeKeysin interfaceScoping- Returns:
- the accessed labels of the scoping step
-
getLocalChildren
public List<Traversal.Admin<?,?>> getLocalChildren()
Description copied from interface:TraversalParentGets 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. SeeLocalSteporByModulatingas examples.- Specified by:
getLocalChildrenin interfaceTraversalParent
-
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.
-
setTraversal
public void setTraversal(Traversal.Admin<?,?> parentTraversal)
Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
setTraversalin interfaceStep<S extends Element,S extends Element>- Overrides:
setTraversalin classAbstractStep<S extends Element,S extends Element>- Parameters:
parentTraversal- the new traversal for this step
-
equals
public boolean equals(Object o)
-
hashCode
public int hashCode()
-
sideEffect
protected void sideEffect(Traverser.Admin<S> traverser)
- Specified by:
sideEffectin classSideEffectStep<S extends Element>
-
getCardinality
public VertexProperty.Cardinality getCardinality()
- Specified by:
getCardinalityin interfaceAddPropertyStepContract<S extends Element>
-
getKey
public Object getKey()
Description copied from interface:AddPropertyStepContractGet the property key- Specified by:
getKeyin interfaceAddPropertyStepContract<S extends Element>
-
getValue
public Object getValue()
Description copied from interface:AddPropertyStepContractGets the property value. If the value was originally passed as aGValue, the variable will become pinned and the literal value returned.- Specified by:
getValuein interfaceAddPropertyStepContract<S extends Element>
-
getValueWithGValue
public Object getValueWithGValue()
Get the value as-is, without unboxing GValues if present, and without pinning the variable- Specified by:
getValueWithGValuein interfaceAddPropertyStepContract<S extends Element>
-
clone
public AddPropertyStepPlaceholder<S> 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.
-
asConcreteStep
public AddPropertyStep<S> asConcreteStep()
- Specified by:
asConcreteStepin interfaceGValueHolder<S extends Element,S extends Element>
-
isParameterized
public boolean isParameterized()
- Specified by:
isParameterizedin interfaceGValueHolder<S extends Element,S extends Element>
-
updateVariable
public void updateVariable(String name, Object value)
- Specified by:
updateVariablein interfaceGValueHolder<S extends Element,S extends Element>
-
getGValues
public Collection<GValue<?>> getGValues()
- Specified by:
getGValuesin interfaceGValueHolder<S extends Element,S extends Element>
-
addProperty
public void addProperty(Object key, Object value)
- Specified by:
addPropertyin interfacePropertiesHolder
-
getProperties
public Map<Object,List<Object>> getProperties()
- Specified by:
getPropertiesin interfacePropertiesHolder
-
getPropertiesWithGValues
public Map<Object,List<Object>> getPropertiesWithGValues()
- Specified by:
getPropertiesWithGValuesin interfacePropertiesHolder
-
removeProperty
public boolean removeProperty(Object k)
- Specified by:
removePropertyin interfacePropertiesHolder
-
getMutatingCallbackRegistry
public CallbackRegistry<Event.ElementPropertyChangedEvent> getMutatingCallbackRegistry()
Description copied from interface:MutatingGets the callback registry for events that the step raises.- Specified by:
getMutatingCallbackRegistryin interfaceMutating<S extends Element>
-
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
-
-