Interface OWLEntitySetProvider<E extends OWLEntity>

Type Parameters:
E - the entity type
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface OWLEntitySetProvider<E extends OWLEntity>
Provides a set of entities to inputs that require this.
Since:
2.0.0
Author:
Matthew Horridge, The University Of Manchester, Bio-Health Informatics Group
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default Set<E>
     
  • Method Details

    • getEntities

      default Set<E> getEntities()
      Returns:
      the entities that are provided by this provider. The set that is returned is a copy; modifications to the returned set will not be reflected in this object.
    • entities

      Stream<E> entities()
      Returns:
      the entities that are provided by this provider.