Uses of Interface
net.ontopia.topicmaps.core.OccurrenceIF
Packages that use OccurrenceIF
Package
Description
Collection of classes for indexing topic maps.
Provides interfaces for topic map objects; the topic map API for all Ontopia
topic map implementations.
Provides interfaces for the engine's index system; the API for Ontopia
topic map indexes.
The implementation of and public API to the DB2TM module for
converting relational data (in CSV files or RDBMSs) to Topic Maps.
The in-memory implementation of the core topic map interfaces.
Index classes for use with the basic implementation.
Relational database implementation of the core topic map
interfaces.
Index classes for use with the rdbms implementation.
INTERNAL: Classes that are used by many implementations.
Provides Comparators which are used by the Navigator.
This package provides topic map utility classes, which are a toolkit for
working with the topic map model provided by the core interfaces.
Provides DeciderIFs which are used by the Navigator.
This package provides support for the textual Linear Topic Map
Notation (or LTM) format for topic maps.
-
Uses of OccurrenceIF in net.ontopia.infoset.fulltext.topicmaps
Methods in net.ontopia.infoset.fulltext.topicmaps with parameters of type OccurrenceIFModifier and TypeMethodDescriptionDefaultTopicMapDocumentGenerator.generate(OccurrenceIF occur) TopicMapDocumentGeneratorIF.generate(OccurrenceIF occurs) INTERNAL: Generate a document for the given occurrence. -
Uses of OccurrenceIF in net.ontopia.topicmaps.core
Methods in net.ontopia.topicmaps.core that return OccurrenceIFModifier and TypeMethodDescriptionTopicMapBuilderIF.makeOccurrence(TopicIF topic, TopicIF occurs_type, Reader value, long length, LocatorIF datatype) PUBLIC: Makes a new internal occurrence with the given type and value for the given topic.TopicMapBuilderIF.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value) PUBLIC: Makes a new internal occurrence with the given type and value for the given topic.TopicMapBuilderIF.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value, LocatorIF datatype) PUBLIC: Makes a new internal occurrence with the given type and value for the given topic.TopicMapBuilderIF.makeOccurrence(TopicIF topic, TopicIF occurs_type, LocatorIF locator) PUBLIC: Makes a new external occurrence with the given type and locator for the given topic.Methods in net.ontopia.topicmaps.core that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionTopicIF.getOccurrences()PUBLIC: Gets the occurrences of this topic.TopicIF.getOccurrencesByType(TopicIF type) PUBLIC: Gets the occurrences of this topic with a specified type. -
Uses of OccurrenceIF in net.ontopia.topicmaps.core.index
Methods in net.ontopia.topicmaps.core.index that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionClassInstanceIndexIF.getAllOccurrences()PUBLIC: Gets all occurrences that are in the topic map.ClassInstanceIndexIF.getOccurrences(TopicIF occurrence_type) PUBLIC: Gets all occurrences that are of the given type.OccurrenceIndexIF.getOccurrences(String value) INTERNAL: Gets all occurrences that have the specified value independent of datatype.OccurrenceIndexIF.getOccurrences(String value, LocatorIF datatype) INTERNAL: Gets all occurrences that have the specified value and datatype.OccurrenceIndexIF.getOccurrences(String value, LocatorIF datatype, TopicIF occurrenceType) INTERNAL: Gets all occurrences that have the specified value, datatype and occurrenceType.OccurrenceIndexIF.getOccurrences(String value, TopicIF occurrenceType) INTERNAL: Gets all occurrences that have the specified value and occurrenceType independent of datatype.ScopeIndexIF.getOccurrences(TopicIF theme) PUBLIC: Gets all occurrences that have the given topic in their direct scope.OccurrenceIndexIF.getOccurrencesByPrefix(String prefix) INTERNAL: Gets all occurrences of any datatype that have a value starting with the specified prefix.OccurrenceIndexIF.getOccurrencesByPrefix(String prefix, LocatorIF datatype) INTERNAL: Gets all occurrences that have the specifed datatype and a value starting with the specified prefix. -
Uses of OccurrenceIF in net.ontopia.topicmaps.db2tm
Methods in net.ontopia.topicmaps.db2tm that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionprotected static List<OccurrenceIF>Processor.getOccurrences(TopicIF topic, Relation relation, Entity entity, Field field, String[] tuple, Context ctx) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.basic
Classes in net.ontopia.topicmaps.impl.basic that implement OccurrenceIFFields in net.ontopia.topicmaps.impl.basic with type parameters of type OccurrenceIFMethods in net.ontopia.topicmaps.impl.basic that return OccurrenceIFModifier and TypeMethodDescriptionTopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, Reader value, long length, LocatorIF datatype) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value, LocatorIF datatype) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, LocatorIF locator) Methods in net.ontopia.topicmaps.impl.basic that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionTopic.getOccurrences()Topic.getOccurrencesByType(TopicIF type) Methods in net.ontopia.topicmaps.impl.basic with parameters of type OccurrenceIFModifier and TypeMethodDescriptionprotected voidTopic.addOccurrence(OccurrenceIF _occurrence) protected voidTopic.removeOccurrence(OccurrenceIF _occurrence) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.basic.index
Fields in net.ontopia.topicmaps.impl.basic.index with type parameters of type OccurrenceIFModifier and TypeFieldDescriptionprotected CollectionMap<TopicIF,OccurrenceIF> ClassInstanceIndex.occursprotected CollectionSortedMap<String,OccurrenceIF> OccurrenceIndex.occursprotected CollectionMap<TopicIF,OccurrenceIF> ScopeIndex.occursMethods in net.ontopia.topicmaps.impl.basic.index that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionClassInstanceIndex.getAllOccurrences()ClassInstanceIndex.getOccurrences(TopicIF occurrence_type) OccurrenceIndex.getOccurrences(String value) OccurrenceIndex.getOccurrences(String value, LocatorIF datatype) OccurrenceIndex.getOccurrences(String value, LocatorIF datatype, TopicIF occurrenceType) OccurrenceIndex.getOccurrences(String value, TopicIF occurrenceType) ScopeIndex.getOccurrences(TopicIF theme) OccurrenceIndex.getOccurrencesByPrefix(String prefix) OccurrenceIndex.getOccurrencesByPrefix(String prefix, LocatorIF datatype) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.rdbms
Classes in net.ontopia.topicmaps.impl.rdbms that implement OccurrenceIFModifier and TypeClassDescriptionclassINTERNAL: The rdbms occurrence implementation.classINTERNAL: The read-only rdbms occurrence implementation.Methods in net.ontopia.topicmaps.impl.rdbms that return OccurrenceIFModifier and TypeMethodDescriptionTopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, Reader value, long length, LocatorIF datatype) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, String value, LocatorIF datatype) TopicMapBuilder.makeOccurrence(TopicIF topic, TopicIF occurs_type, LocatorIF locator) Methods in net.ontopia.topicmaps.impl.rdbms that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionReadOnlyTopic.getOccurrences()Topic.getOccurrences()RDBMSTopicMapTransaction.getOccurrencesByType(TopicIF topic, TopicIF type) ReadOnlyTopic.getOccurrencesByType(TopicIF type) ReadOnlyTopicMap.getOccurrencesByType(TopicIF topic, TopicIF type) Topic.getOccurrencesByType(TopicIF type) TopicMap.getOccurrencesByType(TopicIF topic, TopicIF type) Methods in net.ontopia.topicmaps.impl.rdbms with parameters of type OccurrenceIFModifier and TypeMethodDescriptionprotected voidReadOnlyTopic.addOccurrence(OccurrenceIF occurrence) protected voidTopic.addOccurrence(OccurrenceIF occurrence) protected voidReadOnlyTopic.removeOccurrence(OccurrenceIF occurrence) protected voidTopic.removeOccurrence(OccurrenceIF occurrence) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.rdbms.index
Methods in net.ontopia.topicmaps.impl.rdbms.index that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionClassInstanceIndex.getAllOccurrences()ClassInstanceIndex.getOccurrences(TopicIF occurrence_type) OccurrenceIndex.getOccurrences(String value) OccurrenceIndex.getOccurrences(String value, LocatorIF datatype) OccurrenceIndex.getOccurrences(String value, LocatorIF datatype, TopicIF occurrenceType) OccurrenceIndex.getOccurrences(String value, TopicIF occurrenceType) ScopeIndex.getOccurrences(TopicIF theme) OccurrenceIndex.getOccurrencesByPrefix(String prefix) OccurrenceIndex.getOccurrencesByPrefix(String prefix, LocatorIF datatype) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.remote
Methods in net.ontopia.topicmaps.impl.remote that return types with arguments of type OccurrenceIFMethods in net.ontopia.topicmaps.impl.remote with parameters of type OccurrenceIFModifier and TypeMethodDescriptionprotected voidRemoteTopic.addOccurrence(OccurrenceIF _occurrence) protected voidRemoteTopic.removeOccurrence(OccurrenceIF _occurrence) -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.tmapi2
Methods in net.ontopia.topicmaps.impl.tmapi2 that return OccurrenceIFMethods in net.ontopia.topicmaps.impl.tmapi2 with parameters of type OccurrenceIFModifier and TypeMethodDescriptionorg.tmapi.core.OccurrenceTopicMapImpl.wrapOccurrence(OccurrenceIF occ) Constructors in net.ontopia.topicmaps.impl.tmapi2 with parameters of type OccurrenceIF -
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.utils
Classes in net.ontopia.topicmaps.impl.utils that implement OccurrenceIFFields in net.ontopia.topicmaps.impl.utils with type parameters of type OccurrenceIFMethods in net.ontopia.topicmaps.impl.utils that return OccurrenceIFModifier and TypeMethodDescriptionstatic OccurrenceIFSnapshotOccurrence.makeSnapshot(OccurrenceIF original, int snapshotType, Map<TMObjectIF, SnapshotTMObject> processed) Methods in net.ontopia.topicmaps.impl.utils that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionSnapshotTopic.getOccurrences()SnapshotTopic.getOccurrencesByType(TopicIF type) Methods in net.ontopia.topicmaps.impl.utils with parameters of type OccurrenceIFModifier and TypeMethodDescriptionstatic OccurrenceIFSnapshotOccurrence.makeSnapshot(OccurrenceIF original, int snapshotType, Map<TMObjectIF, SnapshotTMObject> processed) static StringObjectStrings.toString(String impl, OccurrenceIF occurs) -
Uses of OccurrenceIF in net.ontopia.topicmaps.rest.model.mixin
Subinterfaces of OccurrenceIF in net.ontopia.topicmaps.rest.model.mixin -
Uses of OccurrenceIF in net.ontopia.topicmaps.rest.v1.occurrence
Methods in net.ontopia.topicmaps.rest.v1.occurrence that return OccurrenceIFModifier and TypeMethodDescriptionOccurrenceController.add(TopicMapIF tm, TopicIF topic, Occurrence occurrence) OccurrenceController.add(TopicMapIF tm, Occurrence occurrence) OccurrenceController.change(TopicMapIF tm, OccurrenceIF result, Occurrence occurrence) OccurrenceResource.changeOccurrence(Occurrence occurrence) OccurrenceResource.getOccurrence()OccurrenceController.resolve(TopicMapIF tm, Occurrence occurrence) Methods in net.ontopia.topicmaps.rest.v1.occurrence that return types with arguments of type OccurrenceIFMethods in net.ontopia.topicmaps.rest.v1.occurrence with parameters of type OccurrenceIFModifier and TypeMethodDescriptionOccurrenceController.change(TopicMapIF tm, OccurrenceIF result, Occurrence occurrence) voidOccurrenceController.remove(OccurrenceIF occurrence) -
Uses of OccurrenceIF in net.ontopia.topicmaps.utils
Methods in net.ontopia.topicmaps.utils that return OccurrenceIFModifier and TypeMethodDescriptionstatic OccurrenceIFCopyUtils.copyOccurrence(TopicIF target, OccurrenceIF source) INTERNAL: Copies the occurrence from the source topic to the target topic.static OccurrenceIFMergeUtils.mergeInto(TopicIF target, OccurrenceIF source) PUBLIC: Merges the source occurrence into the target topic in another topic map.Methods in net.ontopia.topicmaps.utils that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionstatic Collection<OccurrenceIF>CharacteristicUtils.getOccurrences(Collection<TopicIF> topics) Gets the occurrences of all the topics in the given collection.Methods in net.ontopia.topicmaps.utils with parameters of type OccurrenceIFModifier and TypeMethodDescriptionstatic OccurrenceIFCopyUtils.copyOccurrence(TopicIF target, OccurrenceIF source) INTERNAL: Copies the occurrence from the source topic to the target topic.static voidCopyUtils.copyOccurrenceData(OccurrenceIF target, OccurrenceIF source) INTERNAL: Copies the occurrence value and datatype from the source topic to the target topic.protected static StringKeyGenerator.makeDataKey(OccurrenceIF occ) static StringKeyGenerator.makeOccurrenceKey(OccurrenceIF occ) PUBLIC: Makes a key for an occurrence.static StringKeyGenerator.makeOccurrenceKey(OccurrenceIF occ, TopicMapIF othertm) PUBLIC: Makes a key for an occurrence, as it would look in another topic map.static voidMergeUtils.mergeInto(OccurrenceIF target, OccurrenceIF source) PUBLIC: Merges the source occurrence into the target occurrence.static OccurrenceIFMergeUtils.mergeInto(TopicIF target, OccurrenceIF source) PUBLIC: Merges the source occurrence into the target topic in another topic map.Method parameters in net.ontopia.topicmaps.utils with type arguments of type OccurrenceIFModifier and TypeMethodDescriptionstatic voidDuplicateSuppressionUtils.removeDuplicateOccurrences(Collection<OccurrenceIF> occurs) INTERNAL: do not call this method. -
Uses of OccurrenceIF in net.ontopia.topicmaps.utils.deciders
Methods in net.ontopia.topicmaps.utils.deciders with parameters of type OccurrenceIFModifier and TypeMethodDescriptionbooleanTMExporterDecider.test(OccurrenceIF occurrence) Return true iff the type of the occurrence is accepted -
Uses of OccurrenceIF in net.ontopia.topicmaps.utils.ltm
Fields in net.ontopia.topicmaps.utils.ltm with type parameters of type OccurrenceIFModifier and TypeFieldDescriptionprotected Comparator<OccurrenceIF>LTMTopicMapWriter.occurrenceComparator -
Uses of OccurrenceIF in net.ontopia.topicmaps.utils.tmprefs
Methods in net.ontopia.topicmaps.utils.tmprefs that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionprotected Set<OccurrenceIF>TopicMapPreferences.fetchProperties(TopicMapIF topicmap) -
Uses of OccurrenceIF in net.ontopia.topicmaps.viz
Methods in net.ontopia.topicmaps.viz that return OccurrenceIFModifier and TypeMethodDescriptionprotected OccurrenceIFVizConfigurationManager.getOccurrence(TopicIF topic, TopicIF type) Returns the occurrence of the given type, if there is one. -
Uses of OccurrenceIF in ontopoly.conversion
Methods in ontopoly.conversion that return OccurrenceIFModifier and TypeMethodDescriptionprotected static OccurrenceIFUpgradeBase.addOccurrence(TopicMap topicMap, LocatorIF base_on, TopicIF topic, String otype, String datatype, String value) static OccurrenceIFConversionUtils.getOccurrenceOfType(TopicIF topic, TopicIF occType) Methods in ontopoly.conversion that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionstatic Collection<OccurrenceIF>ConversionUtils.getOccurrencesOfType(TopicIF topic, TopicIF occType) -
Uses of OccurrenceIF in ontopoly.model
Methods in ontopoly.model that return types with arguments of type OccurrenceIF -
Uses of OccurrenceIF in ontopoly.utils
Methods in ontopoly.utils that return OccurrenceIFModifier and TypeMethodDescriptionstatic OccurrenceIFOntopolyModelUtils.findOccurrence(TopicIF oType, TopicIF topicIF) static OccurrenceIFOntopolyModelUtils.findOccurrence(TopicIF oType, TopicIF topicIF, LocatorIF datatype, Collection<TopicIF> scope) static OccurrenceIFOntopolyModelUtils.makeOccurrence(TopicIF otype, TopicIF topicIF, String value, LocatorIF datatype, Collection<TopicIF> scope) Methods in ontopoly.utils that return types with arguments of type OccurrenceIFModifier and TypeMethodDescriptionstatic List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF) static List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF, String value, Collection<TopicIF> scope) static List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF, String value, LocatorIF datatype, Collection<TopicIF> scope) static List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF, Collection<TopicIF> scope) static List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF, LocatorIF datatype) static List<OccurrenceIF>OntopolyModelUtils.findOccurrences(TopicIF oType, TopicIF topicIF, LocatorIF datatype, Collection<TopicIF> scope) Methods in ontopoly.utils with parameters of type OccurrenceIFModifier and TypeMethodDescriptionstatic final org.apache.wicket.util.resource.IResourceStreamOccurrenceWebResource.getResourceStream(OccurrenceIF occ)