public abstract class DetachedElement<E> extends Object implements Element, Serializable, Attachable<E>
Element.Exceptions
Attachable.Exceptions, Attachable.Method
Modifier and Type | Field and Description |
---|---|
protected Object |
id |
protected String |
label |
protected Map<String,List<Property>> |
properties |
Modifier | Constructor and Description |
---|---|
protected |
DetachedElement() |
protected |
DetachedElement(Element element) |
protected |
DetachedElement(Object id,
String label) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object object) |
E |
get()
Get the raw object trying to be attached.
|
Graph |
graph()
Get the graph that this element is within.
|
int |
hashCode() |
Object |
id()
Gets the unique identifier for the graph
Element . |
String |
label()
Gets the label for the graph
Element which helps categorize it. |
<V> Iterator<? extends Property<V>> |
properties(String... propertyKeys)
Get an
Iterator of properties where the propertyKeys is meant to be a filter on the available
keys. |
<V> Property<V> |
property(String key)
Get a
Property for the Element given its key. |
<V> Property<V> |
property(String key,
V value)
Add or set a property value for the
Element given its key. |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
keys, remove, value, values
attach
protected DetachedElement()
protected DetachedElement(Element element)
public Graph graph()
Element
public Object id()
Element
Element
.public String label()
Element
Element
which helps categorize it.public <V> Property<V> property(String key, V value)
Element
Element
given its key.public <V> Property<V> property(String key)
Element
Property
for the Element
given its key.
The default implementation calls the raw Element.properties(java.lang.String...)
.public <V> Iterator<? extends Property<V>> properties(String... propertyKeys)
Element
Iterator
of properties where the propertyKeys
is meant to be a filter on the available
keys. If no keys are provide then return all the properties.properties
in interface Element
public E get()
Attachable
get
in interface Attachable<E>
Copyright © 2013–2020 Apache Software Foundation. All rights reserved.