Uses of Interface
org.tmapi.core.Occurrence

Packages that use Occurrence
org.tmapi.core Core interfaces which provide the functionality of the Topic Maps - Data Model
org.tmapi.index Index interfaces which provide lookup of Topic Maps Constructs. 
 

Uses of Occurrence in org.tmapi.core
 

Methods in org.tmapi.core that return Occurrence
 Occurrence Topic.createOccurrence(Topic type, Locator value, java.util.Collection<Topic> scope)
          Creates an Occurrence for this topic with the specified type, IRI value, and scope.
 Occurrence Topic.createOccurrence(Topic type, Locator value, Topic... scope)
          Creates an Occurrence for this topic with the specified type, IRI value, and scope.
 Occurrence Topic.createOccurrence(Topic type, java.lang.String value, java.util.Collection<Topic> scope)
          Creates an Occurrence for this topic with the specified type, string value, and scope.
 Occurrence Topic.createOccurrence(Topic type, java.lang.String value, Locator datatype, java.util.Collection<Topic> scope)
          Creates an Occurrence for this topic with the specified type, value, datatype, and scope.
 Occurrence Topic.createOccurrence(Topic type, java.lang.String value, Locator datatype, Topic... scope)
          Creates an Occurrence for this topic with the specified type, value, datatype, and scope.
 Occurrence Topic.createOccurrence(Topic type, java.lang.String value, Topic... scope)
          Creates an Occurrence for this topic with the specified type, string value, and scope.
 

Methods in org.tmapi.core that return types with arguments of type Occurrence
 java.util.Set<Occurrence> Topic.getOccurrences()
          Returns the Occurrences of this topic.
 java.util.Set<Occurrence> Topic.getOccurrences(Topic type)
          Returns the Occurrences of this topic where the occurrence type is type.
 

Uses of Occurrence in org.tmapi.index
 

Methods in org.tmapi.index that return types with arguments of type Occurrence
 java.util.Collection<Occurrence> LiteralIndex.getOccurrences(Locator value)
          Returns the Occurrences in the topic map whose value property matches the IRI represented by value.
 java.util.Collection<Occurrence> LiteralIndex.getOccurrences(java.lang.String value)
          Returns the Occurrences in the topic map whose value property matches value and whose datatype property is xsd:string.
 java.util.Collection<Occurrence> LiteralIndex.getOccurrences(java.lang.String value, Locator datatype)
          Returns the Occurrences in the topic map whose value property matches value and whose datatye is datatype.
 java.util.Collection<Occurrence> TypeInstanceIndex.getOccurrences(Topic type)
          Returns the occurrences in the topic map whose type property equals type.
 java.util.Collection<Occurrence> ScopedIndex.getOccurrences(Topic theme)
          Returns the Occurrences in the topic map whose scope property contains the specified theme.
 java.util.Collection<Occurrence> ScopedIndex.getOccurrences(Topic[] themes, boolean matchAll)
          Returns the Occurrences in the topic map whose scope property equals one of those themes at least.