Interface FsIndexCollection

  • All Superinterfaces:
    java.lang.Cloneable, MetaDataObject, java.io.Serializable, XMLizable
    All Known Implementing Classes:
    FsIndexCollection_impl

    public interface FsIndexCollection
    extends MetaDataObject
    Description of a collection of CAS feature structure indexes. This implements MetaDataObject, which implements XMLizable, so it can be serialized to and deserialized from an XML element.

    FS Index Collections can declare that they import other FS Index Collections. At runtime, these imports will be resolved to create a single logical FS Index Collection.

    Note that imports are not automatically resolved when an FsIndexCollection is deserialized from XML. To resolve the imports, call the resolveImports() method. Import resolution is done automatically when a CAS is created using a FsIndexCollection.

    FS Index Collections can optionally be assigned a name, description, vendor, and version. It is recommended that these properties be set on any FS Index Collection that is meant to be shared by (imported by) multiple components.

    • Method Detail

      • getName

        java.lang.String getName()
        Gets the name of this FS Index Collection.
        Returns:
        the name of this FS Index Collection, null if none has been specified.
      • setName

        void setName​(java.lang.String aName)
        Sets the name of this FS Index Collection.
        Parameters:
        aName - the name of this FS Index Collection
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • getVersion

        java.lang.String getVersion()
        Gets the version number of this FS Index Collection.
        Returns:
        the version number of this FS Index Collection, as a String, null if none has been specified.
      • setVersion

        void setVersion​(java.lang.String aVersion)
        Sets the version number of this FS Index Collection.
        Parameters:
        aVersion - the version number of this FS Index Collection, as a String
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • getDescription

        java.lang.String getDescription()
        Gets the description of this FS Index Collection.
        Returns:
        the description of this FS Index Collection, null if none has been specified.
      • setDescription

        void setDescription​(java.lang.String aDescription)
        Sets the description of this FS Index Collection.
        Parameters:
        aDescription - the description of this FS Index Collection
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • getVendor

        java.lang.String getVendor()
        Gets the vendor of this FS Index Collection.
        Returns:
        the vendor of this FS Index Collection, as a String
      • setVendor

        void setVendor​(java.lang.String aVendor)
        Sets the vendor of this FS Index Collection.
        Parameters:
        aVendor - the vendor of this FS Index Collection, as a String, null if none has been specified.
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • getImports

        Import[] getImports()
        Gets the imports declared by this FS Index Collection.
        Returns:
        an array of imports declared by this FS Index Collection.
      • setImports

        void setImports​(Import[] aImports)
        Sets the imports declared by this FS Index Collection.
        Parameters:
        aImports - an array of imports declared by this FS Index Collection.
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • getFsIndexes

        FsIndexDescription[] getFsIndexes()
        Retrieves the FS Index descriptions that are part of this collection. These define the indexes that are used to iterate over annotations in the CAS.
        Returns:
        a description of the FS Indexes that comprise this FS Index Collection
      • setFsIndexes

        void setFsIndexes​(FsIndexDescription[] aFSIndexes)
        Retrieves the FS Index descriptions that are part of this collection. These define the indexes that are used to iterate over annotations in the CAS.
        Parameters:
        aFSIndexes - a description of the FS Indexes that comprise this FS Index Collection
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • addFsIndex

        void addFsIndex​(FsIndexDescription aFsIndexDescription)
        Adds an FS Index description to this collection.
        Parameters:
        aFsIndexDescription - the FS Index description to add
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • removeFsIndex

        void removeFsIndex​(FsIndexDescription aFsIndexDescription)
        Removes an FS Index description from this collection.
        Parameters:
        aFsIndexDescription - the FS Index description to remove (must be == with an FsIndexDescription in this collection, or this method will do nothing).
        Throws:
        UIMA_UnsupportedOperationException - if this object is not modifiable
      • resolveImports

        void resolveImports()
                     throws InvalidXMLException
        Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection's fsIndexes list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.
        Throws:
        InvalidXMLException - if either the import target does not exist or is invalid
      • resolveImports

        void resolveImports​(ResourceManager aResourceManager)
                     throws InvalidXMLException
        Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection's fsIndexes list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.
        Parameters:
        aResourceManager - the Resource Manager used to locate FS Index Collections imported by name. For example, the path in which to locate these FS Index Collections can be set via the ResourceManager.setDataPath(String) method.
        Throws:
        InvalidXMLException - if either the import target does not exist or is invalid
      • resolveImports

        @Deprecated
        void resolveImports​(java.util.Collection<java.lang.String> aAlreadyImportedFsIndexCollectionURLs,
                            ResourceManager aResourceManager)
                     throws InvalidXMLException
        Deprecated.
        Method is deprecated because it should only be used internally. Scheduled for removal in UIMA 4.0.
        Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection's fsIndexes list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.

        This version is used internally to resolve nested imports.

        Parameters:
        aResourceManager - the Resource Manager used to locate FS Index Collections imported by name. For example, the path in which to locate these FS Index Collections can be set via the ResourceManager.setDataPath(String) method.
        aAlreadyImportedFsIndexCollectionURLs - URLs of already imported FS Index Collections, so we don't import them again.
        Throws:
        InvalidXMLException - if either the import target does not exist or is invalid