Uses of Class
org.hypergraphdb.indexing.HGIndexer

Packages that use HGIndexer
org.hypergraphdb Welcome to HyperGraphDB 
org.hypergraphdb.indexing   
 

Uses of HGIndexer in org.hypergraphdb
 

Methods in org.hypergraphdb that return types with arguments of type HGIndexer
 java.util.List<HGIndexer> HGIndexManager.getIndexersForType(HGHandle type)
           Return all registered HGIndexers for a given HyperGraph type.
 

Methods in org.hypergraphdb with parameters of type HGIndexer
 void HGIndexManager.deleteIndex(HGIndexer indexer)
           
<KeyType,ValueType>
HGIndex<KeyType,ValueType>
HGIndexManager.getIndex(HGIndexer indexer)
           Retrieve the storage HGIndex associated to the passed-in HGIndexer.
 boolean HGIndexManager.isRegistered(HGIndexer indexer)
          Return true if the given HGIndexer is registered with the index manager and false otherwise.
<KeyType,ValueType>
HGIndex<KeyType,ValueType>
HGIndexManager.register(HGIndexer indexer)
           Possibly create a new index based on the specified IndexDescriptor.
 boolean HGIndexManager.unregister(HGIndexer indexer)
           Remove an existing index.
 

Uses of HGIndexer in org.hypergraphdb.indexing
 

Subclasses of HGIndexer in org.hypergraphdb.indexing
 class ByPartIndexer
           Represents by the value of a part in a composite type.
 class ByTargetIndexer
           Represents an index by a specific target position in ordered links.
 class CompositeIndexer
           
 class HGValueIndexer
           An indexer that not only determines the key in an index entry, but the value as well.
 class LinkIndexer
           A LinkIndexer indexes atoms by their target ordered set.
 class TargetToTargetIndexer
           
 

Methods in org.hypergraphdb.indexing that return HGIndexer
 HGIndexer[] CompositeIndexer.getIndexerParts()
           
 

Methods in org.hypergraphdb.indexing with parameters of type HGIndexer
 void CompositeIndexer.setIndexerParts(HGIndexer[] indexerParts)
           
 

Constructors in org.hypergraphdb.indexing with parameters of type HGIndexer
CompositeIndexer(HGHandle type, HGIndexer[] indexerParts)