| java.lang.Object org.mandarax.rdf.RDFUtils
Method Summary | |
public static Predicate[] | findPredicates(URL url, String language, int maxFetchSize) | public static Predicate[] | findPredicates(URL url) Collect the predicates from a RDF source. | public static boolean | isCollection(Statement stmnt) Indicates whether the statement desribes a RDF collection
associating a collection and one of its elements. | public static boolean | isContainer(Statement stmnt) Indicates whether the statement desribes a RDF container
associating a container and one of its elements. | public static boolean | isContainsProperty(Property property) Indicates whether the property is a contains property
associating a container or a collection (RDF Linked List) and one of its elements. |
findPredicates | public static Predicate[] findPredicates(URL url) throws ClauseSetException(Code) | | Collect the predicates from a RDF source. I.e., scan the RDF source for predicates, and store this predicates.
This is important to support the getKey method which is used by container objects in order
to index clause sets.
Parameters: url - a URL throws: ClauseSetException - |
isCollection | public static boolean isCollection(Statement stmnt)(Code) | | Indicates whether the statement desribes a RDF collection
associating a collection and one of its elements.
Parameters: Statement - a statement a boolean |
isContainer | public static boolean isContainer(Statement stmnt)(Code) | | Indicates whether the statement desribes a RDF container
associating a container and one of its elements.
Parameters: Statement - a statement a boolean |
isContainsProperty | public static boolean isContainsProperty(Property property)(Code) | | Indicates whether the property is a contains property
associating a container or a collection (RDF Linked List) and one of its elements.
Parameters: property - a property a boolean |
|
|