Class PropertiesStep<E>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.map.FlatMapStep<Element,E>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.map.PropertiesStep<E>
 
 
 
- 
- All Implemented Interfaces:
- Serializable,- AutoCloseable,- Cloneable,- Iterator<Traverser.Admin<E>>,- Step<Element,E>,- Configuring,- Parameterizing
 
 public class PropertiesStep<E> extends FlatMapStep<Element,E> implements AutoCloseable, Configuring - Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected Parametersparametersprotected String[]propertyKeysprotected PropertyTypereturnType- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepid, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
 
- 
 - 
Constructor SummaryConstructors Constructor Description PropertiesStep(Traversal.Admin traversal, PropertyType propertyType, String... propertyKeys)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidconfigure(Object... keyValues)Accept a configuration to theStep.protected Iterator<E>flatMap(Traverser.Admin<Element> traverser)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()StringtoString()- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.map.FlatMapStepcloseIterator, processNextStart, reset
 - 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepaddLabel, addStart, addStarts, clearLabels, clone, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, remove
 
- 
 
- 
- 
- 
Field Detail- 
parametersprotected Parameters parameters 
 - 
propertyKeysprotected final String[] propertyKeys 
 - 
returnTypeprotected final PropertyType returnType 
 
- 
 - 
Constructor Detail- 
PropertiesSteppublic PropertiesStep(Traversal.Admin traversal, PropertyType propertyType, String... propertyKeys) 
 
- 
 - 
Method Detail- 
getParameterspublic Parameters getParameters() Description copied from interface:ParameterizingGets the parameters on the step.- Specified by:
- getParametersin interface- Parameterizing
 
 - 
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
 
 - 
flatMapprotected Iterator<E> flatMap(Traverser.Admin<Element> traverser) - Specified by:
- flatMapin class- FlatMapStep<Element,E>
 
 - 
getReturnTypepublic PropertyType getReturnType() 
 - 
getPropertyKeyspublic String[] getPropertyKeys() 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- AbstractStep<Element,E>
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- AbstractStep<Element,E>
 
 - 
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.- Specified by:
- getRequirementsin interface- Step<Element,E>
- Returns:
- the set of requirements
 
 - 
closepublic void close() throws Exception- Specified by:
- closein interface- AutoCloseable
- Throws:
- Exception
 
 
- 
 
-