Class ComputerGraph.ComputerVertexProperty<V>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.computer.util.ComputerGraph.ComputerElement
-
- org.apache.tinkerpop.gremlin.process.computer.util.ComputerGraph.ComputerVertexProperty<V>
-
- All Implemented Interfaces:
Element
,Property<V>
,WrappedElement<Element>
,WrappedVertexProperty<VertexProperty<V>>
,VertexProperty<V>
- Enclosing class:
- ComputerGraph
public class ComputerGraph.ComputerVertexProperty<V> extends ComputerGraph.ComputerElement implements VertexProperty<V>, WrappedVertexProperty<VertexProperty<V>>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.Element
Element.Exceptions
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.VertexProperty
VertexProperty.Cardinality, VertexProperty.Exceptions
-
-
Field Summary
-
Fields inherited from interface org.apache.tinkerpop.gremlin.structure.VertexProperty
DEFAULT_LABEL
-
-
Constructor Summary
Constructors Constructor Description ComputerVertexProperty(VertexProperty<V> vertexProperty)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vertex
element()
Gets theVertex
that owns thisVertexProperty
.VertexProperty<V>
getBaseVertexProperty()
boolean
isPresent()
Whether the property is empty or not.String
key()
The key of the property.<U> Iterator<Property<U>>
properties(String... propertyKeys)
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys.V
value()
The value of the property.-
Methods inherited from class org.apache.tinkerpop.gremlin.process.computer.util.ComputerGraph.ComputerElement
equals, getBaseElement, graph, hashCode, id, keys, label, property, property, remove, toString, value, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Element
id, keys, property, property, remove, value, values
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.Property
ifPresent, orElse, orElseGet, orElseThrow, remove
-
Methods inherited from interface org.apache.tinkerpop.gremlin.structure.VertexProperty
graph, label
-
-
-
-
Constructor Detail
-
ComputerVertexProperty
public ComputerVertexProperty(VertexProperty<V> vertexProperty)
-
-
Method Detail
-
value
public V value() throws NoSuchElementException
Description copied from interface:Property
The value of the property.- Specified by:
value
in interfaceProperty<V>
- Returns:
- The property value
- Throws:
NoSuchElementException
- thrown if the property is empty
-
isPresent
public boolean isPresent()
Description copied from interface:Property
Whether the property is empty or not.
-
element
public Vertex element()
Description copied from interface:VertexProperty
Gets theVertex
that owns thisVertexProperty
.- Specified by:
element
in interfaceProperty<V>
- Specified by:
element
in interfaceVertexProperty<V>
- Returns:
- The element associated with this property (i.e.
Vertex
,Edge
, orVertexProperty
).
-
properties
public <U> Iterator<Property<U>> properties(String... propertyKeys)
Description copied from interface:Element
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys. If no keys are provide then return all the properties.- Specified by:
properties
in interfaceElement
- Specified by:
properties
in interfaceVertexProperty<V>
- Overrides:
properties
in classComputerGraph.ComputerElement
-
getBaseVertexProperty
public VertexProperty<V> getBaseVertexProperty()
- Specified by:
getBaseVertexProperty
in interfaceWrappedVertexProperty<V>
-
-