-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from dice-group/refactoring_sparql_mapping
Refactoring sparql mapping
- Loading branch information
Showing
11 changed files
with
123 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
from typing import Protocol, ClassVar, TypeVar, Generic, Iterable | ||
from abc import ABCMeta, abstractmethod | ||
_T = TypeVar('_T') #: | ||
|
||
class HasIndex(Protocol): | ||
"""Interface for types with an index; this is used to group objects by type when sorting.""" | ||
type_index: ClassVar[int] #: index for this type. This is a sorting index for the types. | ||
|
||
def __eq__(self, other): ... | ||
|
||
|
||
class HasIRI(metaclass=ABCMeta): | ||
"""Simple class to access the IRI.""" | ||
__slots__ = () | ||
|
||
@abstractmethod | ||
def get_iri(self) -> 'IRI': | ||
"""Gets the IRI of this object. | ||
Returns: | ||
The IRI of this object. | ||
""" | ||
pass | ||
|
||
|
||
class HasOperands(Generic[_T], metaclass=ABCMeta): | ||
"""An interface to objects that have a collection of operands. | ||
Args: | ||
_T: Operand type. | ||
""" | ||
__slots__ = () | ||
|
||
@abstractmethod | ||
def operands(self) -> Iterable[_T]: | ||
"""Gets the operands - e.g., the individuals in a sameAs axiom, or the classes in an equivalent | ||
classes axiom. | ||
Returns: | ||
The operands. | ||
""" | ||
pass |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters