#include <Soprano/RdfSchemaModel>

Public Member Functions | |
| RdfSchemaModel (Model *parentModel=0) | |
| ~RdfSchemaModel () | |
| StatementIterator | classes () const |
| StatementIterator | directSubClassOf (const Node &subClass, const Node &superClass=Node()) const |
| StatementIterator | directSubPropertyOf (const Node &subProperty, const Node &superProperty=Node()) const |
| StatementIterator | directType (const Node &someClass, const Node &someType) const |
| StatementIterator | domain (const Node &prop, const Node &domain) const |
| StatementIterator | properties () const |
| StatementIterator | range (const Node &prop, const Node &range) const |
| StatementIterator | subClassOf (const Node &subClass, const Node &superClass=Node()) const |
| StatementIterator | subPropertyOf (const Node &subProperty, const Node &superProperty=Node()) const |
| StatementIterator | type (const Node &someClass, const Node &someType) const |
| bool | isClass (const Node &resource) const |
| bool | isProperty (const Node &resource) const |
| bool | isDirectSubClassOf (const Node &subClass, const Node &superClass) const |
| bool | isDirectSubPropertyOf (const Node &subProperty, const Node &superProperty) const |
| bool | isDirectType (const Node &someClass, const Node &someType) const |
| bool | isSubClassOf (const Node &subClass, const Node &superClass) const |
| bool | isSubPropertyOf (const Node &subProperty, const Node &superProperty) const |
| bool | isType (const Node &someClass, const Node &someType) const |
Interface based on Sesame's RdfSchemaSource. (Copyright (C) 2002-2006 Aduna BV, GNU LGPL License applies.)
Definition at line 46 of file rdfschemamodel.h.
| Soprano::RdfSchemaModel::RdfSchemaModel | ( | Model * | parentModel = 0 |
) |
Create a new RDF Schema wrapper model that performs actions on model
| Soprano::RdfSchemaModel::~RdfSchemaModel | ( | ) |
Destructor.
| StatementIterator Soprano::RdfSchemaModel::classes | ( | ) | const |
Get all defined RDF/S classes.
| StatementIterator Soprano::RdfSchemaModel::directSubClassOf | ( | const Node & | subClass, | |
| const Node & | superClass = Node() | |||
| ) | const |
Gets all direct subClassOf relations with a specific sub- and/or superclass. A class A is a direct subclass of class B if there is no class C such that A is a subclass of C and C is a subclass of B.
| subClass | The subclass of the relations that should be returned, or an empty node if relations with any subclass should be returned. | |
| superClass | The superclass of the relations that should be returned, or an empty node if relations with any superclass should be returned. |
| StatementIterator Soprano::RdfSchemaModel::directSubPropertyOf | ( | const Node & | subProperty, | |
| const Node & | superProperty = Node() | |||
| ) | const |
Gets all direct subPropertyOf relations with a specific sub- and/or superproperty. A property A is a direct subproperty of property B if there is no property C such that A is a subproperty of C and C is a subproperty of B.
| subProperty | The subproperty of the relations that should be returned, or an empty node if relations with any subproperty should be returned. | |
| superProperty | The superproperty of the relations that should be returned, or an empty node if relations with any superproperty should be returned. |
| StatementIterator Soprano::RdfSchemaModel::directType | ( | const Node & | someClass, | |
| const Node & | someType | |||
| ) | const |
Gets all direct type relations with a specific instance and/or class.
| someClass | The instance of the relations that should be returned, or an empty node if relations with any instance should be returned. | |
| someType | The class of the relations that should be returned, or an empty node if relations with any class should be returned. |
| StatementIterator Soprano::RdfSchemaModel::domain | ( | const Node & | prop, | |
| const Node & | domain | |||
| ) | const |
Gets all domain relations with a specific property and/or domain class.
| prop | The property of the relations that should be returned, or an empty node if relations with any property should be returned. | |
| domain | The domain of the relations that should be returned, or an empty node if relations with any domain should be returned. |
| StatementIterator Soprano::RdfSchemaModel::properties | ( | ) | const |
Gets all defined properties.
| StatementIterator Soprano::RdfSchemaModel::range | ( | const Node & | prop, | |
| const Node & | range | |||
| ) | const |
Gets all range relations with a specific property and/or range class.
| prop | The property of the relations that should be returned, or an empty node if relations with any property should be returned. | |
| range | The range of the relations that should be returned, or an empty node if relations with any range should be returned. |
| StatementIterator Soprano::RdfSchemaModel::subClassOf | ( | const Node & | subClass, | |
| const Node & | superClass = Node() | |||
| ) | const |
Gets all subClassOf relations with a specific sub- and/or superclass. Note that the subClassOf relation is reflexive: a class is implicitly always a subclass of itself.
Do not use this method if the Soprano backend supports inferencing. Use directSubClassOf instead which is much faster.
| subClass | The subclass of the relations that should be returned, or an empty node if relations with any subclass should be returned. | |
| superClass | The superclass of the relations that should be returned, or an emtpy node if relations with any superclass should be returned. |
| StatementIterator Soprano::RdfSchemaModel::subPropertyOf | ( | const Node & | subProperty, | |
| const Node & | superProperty = Node() | |||
| ) | const |
Gets all subPropertyOf relations with a specific sub- and/or superproperty. Note that the subPropertyOf relation is reflexive: a property is implicitly always a subproperty of itself.
Do not use this method if the Soprano backend supports inferencing. Use directSubPropertyOf instead which is much faster.
| subProperty | The subproperty of the relations that should be returned, or an empty node if relations with any subproperty should be returned. | |
| superProperty | The superproperty of the relations that should be returned, or an empty node if relations with any superproperty should be returned. |
| StatementIterator Soprano::RdfSchemaModel::type | ( | const Node & | someClass, | |
| const Node & | someType | |||
| ) | const |
Gets all type relations with a specific instance and/or class.
Do not use this method if the Soprano backend supports inferencing. Use directType instead which is much faster.
| someClass | The instance of the relations that should be returned, or an empty node if relations with any instance should be returned. | |
| someType | The class of the relations that should be returned, or an empty node if relations with any class should be returned. |
| bool Soprano::RdfSchemaModel::isClass | ( | const Node & | resource | ) | const |
Checks whether the supplied resource represents a class.
| resource | The resource to check. |
| bool Soprano::RdfSchemaModel::isProperty | ( | const Node & | resource | ) | const |
Checks whether the supplied resource represents a property.
| resource | The resource to check. |
| bool Soprano::RdfSchemaModel::isDirectSubClassOf | ( | const Node & | subClass, | |
| const Node & | superClass | |||
| ) | const |
Checks whether one resource is a direct subclass of another.
| subClass | A class. | |
| superClass | A class. |
| bool Soprano::RdfSchemaModel::isDirectSubPropertyOf | ( | const Node & | subProperty, | |
| const Node & | superProperty | |||
| ) | const |
Checks whether one resource is a direct subproperty of another.
| subProperty | A property. | |
| superProperty | A property. |
Checks whether one resource is a direct instance of another.
| someClass | An instance. | |
| someType | A class. |
Checks whether one resource is a subclass of another.
Do not use this method if the Soprano backend supports inferencing. Use isDirectSubClassOf instead which is much faster.
| subClass | A class. | |
| superClass | A class. |
| bool Soprano::RdfSchemaModel::isSubPropertyOf | ( | const Node & | subProperty, | |
| const Node & | superProperty | |||
| ) | const |
Checks whether one resource is a subproperty of another.
Do not use this method if the Soprano backend supports inferencing. Use isDirectSubPropertyOf instead which is much faster.
| subProperty | A property. | |
| superProperty | A property. |
Checks whether one resource is a instance of another.
Do not use this method if the Soprano backend supports inferencing. Use isDirectType instead which is much faster.
| someClass | An instance. | |
| someType | A class. |
1.5.7.1