Class KeyedVertexProperty<V>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.structure.util.keyed.KeyedVertexProperty<V>
 
- 
- All Implemented Interfaces:
- Element,- Property<V>,- VertexProperty<V>
 
 public final class KeyedVertexProperty<V> extends Object implements VertexProperty<V> A utility implementation of aPropertythat only has a key but no value and no meta-properties.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.VertexPropertyVertexProperty.Cardinality, VertexProperty.Exceptions
 
- 
 - 
Field Summary- 
Fields inherited from interface org.apache.tinkerpop.gremlin.structure.VertexPropertyDEFAULT_LABEL
 
- 
 - 
Constructor SummaryConstructors Constructor Description KeyedVertexProperty(String key)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Vertexelement()Gets theVertexthat owns thisVertexProperty.booleanequals(Object o)Graphgraph()Get the graph that this element is within.inthashCode()Objectid()Gets the unique identifier for the graphElement.booleanisPresent()Whether the property is empty or not.Stringkey()The key of the property.<U> Iterator<Property<U>>properties(String... propertyKeys)Get anIteratorof properties where thepropertyKeysis meant to be a filter on the available keys.<U> Property<U>property(String key)Get aPropertyfor theElementgiven its key.<U> Property<U>property(String key, U value)Add or set a property value for theElementgiven its key.voidremove()Remove the property from the associated element.StringtoString()Vvalue()The value of the property.- 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.PropertyifPresent, orElse, orElseGet, orElseThrow
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.VertexPropertylabel
 
- 
 
- 
- 
- 
Constructor Detail- 
KeyedVertexPropertypublic KeyedVertexProperty(String key) 
 
- 
 - 
Method Detail- 
elementpublic Vertex element() Description copied from interface:VertexPropertyGets theVertexthat owns thisVertexProperty.- Specified by:
- elementin interface- Property<V>
- Specified by:
- elementin interface- VertexProperty<V>
- Returns:
- The element associated with this property (i.e. Vertex,Edge, orVertexProperty).
 
 - 
idpublic Object id() Description copied from interface:ElementGets the unique identifier for the graphElement.
 - 
graphpublic Graph graph() Description copied from interface:VertexPropertyGet the graph that this element is within.- Specified by:
- graphin interface- Element
- Specified by:
- graphin interface- VertexProperty<V>
- Returns:
- the graph of this element
 
 - 
propertypublic <U> Property<U> property(String key) Description copied from interface:ElementGet aPropertyfor theElementgiven its key. The default implementation calls the rawElement.properties(java.lang.String...).
 - 
propertypublic <U> Property<U> property(String key, U value) Description copied from interface:ElementAdd or set a property value for theElementgiven its key.
 - 
valuepublic V value() throws NoSuchElementException Description copied from interface:PropertyThe value of the property.- Specified by:
- valuein interface- Property<V>
- Returns:
- The property value
- Throws:
- NoSuchElementException- thrown if the property is empty
 
 - 
isPresentpublic boolean isPresent() Description copied from interface:PropertyWhether the property is empty or not.
 - 
removepublic void remove() Description copied from interface:PropertyRemove the property from the associated element.
 - 
propertiespublic <U> Iterator<Property<U>> properties(String... propertyKeys) Description copied from interface:VertexPropertyGet anIteratorof properties where thepropertyKeysis meant to be a filter on the available keys. If no keys are provide then return all the properties.- Specified by:
- propertiesin interface- Element
- Specified by:
- propertiesin interface- VertexProperty<V>
 
 
- 
 
-