All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.index.EntitiesInProjectSignatureByIriIndex Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.index;


import edu.stanford.protege.webprotege.inject.ProjectSingleton;
import org.semanticweb.owlapi.model.IRI;
import org.semanticweb.owlapi.model.OWLEntity;

import javax.annotation.Nonnull;
import java.util.stream.Stream;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2019-08-13
 */
@ProjectSingleton
public interface EntitiesInProjectSignatureByIriIndex extends Index {

    /**
     * Gets the entities that are contained in the signature of project ontologies
     * that have the specified entity IRI.
     * @param entityIri the entity IRI
     * @return A stream of distinct entities that are contained in the signature of
     * the project ontologies.
     */
    @Nonnull
    Stream getEntitiesInSignature(@Nonnull IRI entityIri);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy