Package science.aist.gtf.graph.impl
Class AbstractEdge<V,E>
- java.lang.Object
-
- science.aist.gtf.graph.impl.MetaTagCollectionImpl
-
- science.aist.gtf.graph.impl.AbstractEdge<V,E>
-
- Type Parameters:
V
- the type of the decorated vertex valueE
- the type of the decorated edge value
- All Implemented Interfaces:
Edge<V,E>
,MetaTagCollection
- Direct Known Subclasses:
EdgeImpl
,EdgeViewImpl
public abstract class AbstractEdge<V,E> extends MetaTagCollectionImpl implements Edge<V,E>
Abstract base class to be used for different edge implementation, that are based on a graph state.
- Since:
- 1.0
- Author:
- Andreas Pointner
-
-
Constructor Summary
Constructors Constructor Description AbstractEdge()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vertex<V,E>
getSource()
get the source of the edgeVertex<V,E>
getTarget()
get the target of the edge-
Methods inherited from class science.aist.gtf.graph.impl.MetaTagCollectionImpl
addMetaTag, getMetaTags, removeMetaTag
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface science.aist.gtf.graph.Edge
getElement, getWeight
-
Methods inherited from interface science.aist.gtf.graph.MetaTagCollection
addMetaTag, getMetaTags, getMetaTagValue, getMetaTagValue, removeMetaTag, removeMetaTag, tryGetMetaTagValue, tryGetMetaTagValue
-
-