Uses of Interface
science.aist.gtf.graph.MetaTag
-
Packages that use MetaTag Package Description science.aist.gtf.graph science.aist.gtf.graph.factory science.aist.gtf.graph.impl -
-
Uses of MetaTag in science.aist.gtf.graph
Methods in science.aist.gtf.graph that return types with arguments of type MetaTag Modifier and Type Method Description <T> Collection<MetaTag<T>>
MetaTagCollection. getMetaTags()
Methods in science.aist.gtf.graph with parameters of type MetaTag Modifier and Type Method Description <T> boolean
MetaTagCollection. addMetaTag(MetaTag<T> metaTag)
Adds a meta tag to the current vertex<T> boolean
MetaTagCollection. removeMetaTag(MetaTag<T> metaTag)
Removes a meta tag from the current vertex -
Uses of MetaTag in science.aist.gtf.graph.factory
Methods in science.aist.gtf.graph.factory that return MetaTag Modifier and Type Method Description <T> MetaTag<T>
DefaultGraphFactory. createMetaTag()
<T> MetaTag<T>
DefaultGraphFactory. createMetaTag(String key, T value)
<T> MetaTag<T>
GraphFactory. createMetaTag()
Returns a new instance of a meta tagdefault <T> MetaTag<T>
GraphFactory. createMetaTag(String key, T value)
Returns a new instance of a meta tag with key and value set -
Uses of MetaTag in science.aist.gtf.graph.impl
Classes in science.aist.gtf.graph.impl that implement MetaTag Modifier and Type Class Description class
MetaTagImpl<T>
Implementation of a meta tag, to add additional info to other objectsMethods in science.aist.gtf.graph.impl that return types with arguments of type MetaTag Modifier and Type Method Description <T> Collection<MetaTag<T>>
EdgeViewImpl. getMetaTags()
<T> Collection<MetaTag<T>>
MetaTagCollectionImpl. getMetaTags()
<T> Collection<MetaTag<T>>
VertexViewImpl. getMetaTags()
Methods in science.aist.gtf.graph.impl with parameters of type MetaTag Modifier and Type Method Description <T> boolean
EdgeViewImpl. addMetaTag(MetaTag<T> metaTag)
<T> boolean
MetaTagCollectionImpl. addMetaTag(MetaTag<T> metaTag)
<T> boolean
VertexViewImpl. addMetaTag(MetaTag<T> metaTag)
<T> boolean
EdgeViewImpl. removeMetaTag(MetaTag<T> metaTag)
<T> boolean
MetaTagCollectionImpl. removeMetaTag(MetaTag<T> metaTag)
<T> boolean
VertexViewImpl. removeMetaTag(MetaTag<T> metaTag)
-