Class TinkerProperty<V>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerProperty<V>
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.structure.PropertyProperty.Exceptions
 
- 
 - 
Constructor SummaryConstructors Constructor Description TinkerProperty(Element element, String key, V value)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Elementelement()Get the element that this property is associated with.booleanequals(Object object)inthashCode()booleanisPresent()The existence of this object implies the property is present, thus even anullvalue means "present".Stringkey()The key of the property.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
 
- 
 
- 
- 
- 
Method Detail- 
elementpublic Element element() Description copied from interface:PropertyGet the element that this property is associated with.
 - 
isPresentpublic boolean isPresent() The existence of this object implies the property is present, thus even anullvalue means "present".
 
- 
 
-