Class AddPropertyStep<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.AddPropertyStep<S>
 
 
 
- 
- All Implemented Interfaces:
- Serializable,- AutoCloseable,- Cloneable,- Iterator<Traverser.Admin<S>>,- Step<S,S>,- Configuring,- Deleting<Event.ElementPropertyChangedEvent>,- Mutating<Event.ElementPropertyChangedEvent>,- Parameterizing,- Scoping,- TraversalParent,- Writing<Event.ElementPropertyChangedEvent>
 
 public class AddPropertyStep<S extends Element> extends SideEffectStep<S> implements Writing<Event.ElementPropertyChangedEvent>, Deleting<Event.ElementPropertyChangedEvent>, TraversalParent, Scoping - Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ScopingScoping.KeyNotFoundException, Scoping.Variable
 
- 
 - 
Field Summary- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepid, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
 
- 
 - 
Constructor SummaryConstructors Constructor Description AddPropertyStep(Traversal.Admin traversal, VertexProperty.Cardinality cardinality, Object keyObject, Object valueObject)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description AddPropertyStep<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.VertexProperty.CardinalitygetCardinality()<S,E>
 List<Traversal.Admin<S,E>>getLocalChildren()CallbackRegistry<Event.ElementPropertyChangedEvent>getMutatingCallbackRegistry()Gets the callback registry for events that the step raises.ParametersgetParameters()Gets the parameters on the step.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 traversalinthashCode()voidsetTraversal(Traversal.Admin<?,?> parentTraversal)Set theTraversalthat this step is contained within.protected voidsideEffect(Traverser.Admin<S> traverser)StringtoString()- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SideEffectStepprocessNextStart
 - 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepaddLabel, 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.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, remove
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ScopinggetNullableScopeValue, getSafeScopeValue, getScopeValue
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParentaddGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
 
- 
 
- 
- 
- 
Constructor Detail- 
AddPropertySteppublic AddPropertyStep(Traversal.Admin traversal, VertexProperty.Cardinality cardinality, Object keyObject, Object valueObject) 
 
- 
 - 
Method Detail- 
getParameterspublic Parameters getParameters() Description copied from interface:ParameterizingGets the parameters on the step.- Specified by:
- getParametersin interface- Parameterizing
 
 - 
getScopeKeyspublic Set<String> getScopeKeys() Description copied from interface:ScopingGet the labels that this scoping step will access during the traversal- Specified by:
- getScopeKeysin interface- Scoping
- Returns:
- the accessed labels of the scoping step
 
 - 
getLocalChildrenpublic <S,E> List<Traversal.Admin<S,E>> getLocalChildren() - Specified by:
- getLocalChildrenin interface- TraversalParent
 
 - 
configurepublic 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 interface- Configuring
 
 - 
sideEffectprotected void sideEffect(Traverser.Admin<S> traverser) - Specified by:
- sideEffectin class- SideEffectStep<S extends Element>
 
 - 
getRequirementspublic 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.
 - 
getMutatingCallbackRegistrypublic CallbackRegistry<Event.ElementPropertyChangedEvent> getMutatingCallbackRegistry() Description copied from interface:MutatingGets the callback registry for events that the step raises.- Specified by:
- getMutatingCallbackRegistryin interface- Mutating<S extends Element>
 
 - 
hashCodepublic int hashCode() 
 - 
setTraversalpublic void setTraversal(Traversal.Admin<?,?> parentTraversal) Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
- setTraversalin interface- Step<S extends Element,S extends Element>
- Overrides:
- setTraversalin class- AbstractStep<S extends Element,S extends Element>
- Parameters:
- parentTraversal- the new traversal for this step
 
 - 
getCardinalitypublic VertexProperty.Cardinality getCardinality() 
 - 
toStringpublic String toString() 
 - 
clonepublic AddPropertyStep<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.
 
- 
 
-