Uses of Interface
org.tm4j.topicmap.index.Index

Packages that use Index
org.tm4j.topicmap.index Provides the core interface for a flexible indexing architecture. 
org.tm4j.topicmap.index.basic Provides additional interfaces for "basic" indexing functionality. 
org.tm4j.topicmap.index.text Provides interfaces for text indexing functionality and basic implementations using jakarta-lucene. 
 

Uses of Index in org.tm4j.topicmap.index
 

Subinterfaces of Index in org.tm4j.topicmap.index
 interface ConfigurableIndex
          The interface to be implemented by an index managed by a ConfigurableIndexProvider.
 

Methods in org.tm4j.topicmap.index that return Index
 Index ConfigurableIndexProvider.getIndex(java.lang.String interfaceName)
          Returns the index named interfaceName.
abstract  Index ConfigurableIndexProvider.newIndex(java.lang.String interfaceName, TopicMap tm)
          SPI for the ConfigurableIndexProvider class.
 Index IndexProvider.getIndex(java.lang.String interfaceName)
          Returns the Index implementation which supports the Java interface specified by interfaceName.
 Index IndexManager.getIndex(java.lang.String ixInterface)
          Returns the index which implements the specified interface
 Index IndexManager.getIndex(java.lang.Class ixClass)
          Returns the index which implements the specified interface.
 

Uses of Index in org.tm4j.topicmap.index.basic
 

Subinterfaces of Index in org.tm4j.topicmap.index.basic
 interface AssociationTypesIndex
          This interface provides mechanisms dealing with association types, the topics defining the types of associations.
 interface BaseNameDataIndex
          Interface that provides an index of BaseName instances by their data property.
 interface MemberTypesIndex
          This interface provides mechanisms dealing with member types, the topics defining the types of association members.
 interface OccurrenceDataIndex
          This interface provides an index of Occurrence instances by the full text value of the data property.
 interface OccurrenceLocatorIndex
          This interface provides an index of Occurrences by the locator of the resource they refer to.
 interface OccurrenceTypesIndex
          This interface provides mechanisms dealing with member types, the topics defining the types of occurrences.
 interface ThemesIndex
          An index of all themes used to scope characteristics in a topic map.
 interface TopicTypesIndex
          This interface provides mechanisms dealing with topic types, the topics defining the types of other topics.
 interface VariantDataIndex
          Interface that provides an index of Variant instances by the data property of their child VariantName instance.
 interface VariantLocatorIndex
          This interface provides an index of Variants by the locator of the resource that their child VariantName object refers to.
 

Uses of Index in org.tm4j.topicmap.index.text
 

Subinterfaces of Index in org.tm4j.topicmap.index.text
 interface FullTextIndex
          Defines Methods for using a FullTextIndex.
 

Classes in org.tm4j.topicmap.index.text that implement Index
 class LuceneIndexBase
          INTERNAL Abstract base class for FullTextIndexes using lucene for TextIndexing Concrete Implementations have to set an analyzer and directory implementation before starting the indexing.