| java.lang.Object com.hp.hpl.jena.assembler.AssemblerHelp
AssemblerHelp | public class AssemblerHelp (Code) | | AssemblerHelp provides utility methods used by, and useful for working with,
the Assembler code, including the methods that expand a model to include the
required inferences and to find the most specific type of a root in an
assembler specification.
author: kers |
Field Summary | |
protected static Property | ANY A useful constant for listStatements(S, P, O) . |
Method Summary | |
public static Set | findAssemblerRoots(Model model) Answer a Set of the ja:Object resources in the full expansion of
the assembler specification model model . | public static Set | findAssemblerRoots(Model model, Resource type) Answer a Set of the objects in the full expansion of the assembler
specification model which have rdf:type type ,
which must be a subtype of ja:Object . | public static Resource | findSpecificType(Resource root) Answer the most specific type of root that is a subclass of
ja:Object. | public static Resource | findSpecificType(Resource root, Resource baseType) Answer the most specific type of root that is a subclass of
givenType . | public static Set | findSpecificTypes(Resource root, Resource baseType) Answer all the types of root which are subtypes of
baseType and which do not have subtypes which are
also types of root . | public static Model | fullModel(Model m) Answer the full model of m , with all its imports included and
with the necessary properties added from the JA schema. | public static Model | fullModel(ImportManager im, Model m) Answer the full model of m , with all its imports included and
with the necessary properties added from the JA schema. | public static Resource | getResource(Statement s) Answer the resource that is the object of the statement s . | public static String | getString(Statement s) Answer the plain string object of the statement s . | public static String | getString(Statement s, Literal L) Answer the String value of the literal L , which is the
object of the Statement s . | public static void | loadArbitraryClasses(AssemblerGroup g, Model m) Load all the classes which are objects of any (t, ja:loadClass, S)
statements in m . | public static void | loadAssemblerClasses(AssemblerGroup group, Model m) Load all the classes which are objects of any (t, ja:assembler, S) statements
in m . | public static void | loadClasses(AssemblerGroup group, Model m) | public static Resource | singleModelRoot(Model singleRoot) Answer the single resource in singleRoot of type
ja:Model . | public static Resource | singleRoot(Model singleRoot, Resource type) Answer the single resource in singleRoot of type
type . | public static Resource | withFullModel(Resource root) Answer a Resource .equals() to root , but in the expanded
model. |
ANY | protected static Property ANY(Code) | | A useful constant for listStatements(S, P, O) .
|
findAssemblerRoots | public static Set findAssemblerRoots(Model model)(Code) | | Answer a Set of the ja:Object resources in the full expansion of
the assembler specification model model .
|
findAssemblerRoots | public static Set findAssemblerRoots(Model model, Resource type)(Code) | | Answer a Set of the objects in the full expansion of the assembler
specification model which have rdf:type type ,
which must be a subtype of ja:Object .
|
findSpecificType | public static Resource findSpecificType(Resource root)(Code) | | Answer the most specific type of root that is a subclass of
ja:Object. If there are no candidate types, answer givenType .
If there is more than one type, throw a NoSpecificTypeException.
|
findSpecificType | public static Resource findSpecificType(Resource root, Resource baseType)(Code) | | Answer the most specific type of root that is a subclass of
givenType . If there are no candidate types, answer
givenType . If there is more than one type, throw a
NoSpecificTypeException.
|
findSpecificTypes | public static Set findSpecificTypes(Resource root, Resource baseType)(Code) | | Answer all the types of root which are subtypes of
baseType and which do not have subtypes which are
also types of root .
|
fullModel | public static Model fullModel(Model m)(Code) | | Answer the full model of m , with all its imports included and
with the necessary properties added from the JA schema. However, if
the magic footprint triple (ja:this, rdf:type, ja:Expanded) is present in the
model, it is returned unchanged. Imports are managed by the shared
ImportManager.instance .
|
fullModel | public static Model fullModel(ImportManager im, Model m)(Code) | | Answer the full model of m , with all its imports included and
with the necessary properties added from the JA schema. However, if
the magic footprint triple (ja:this, rdf:type, ja:Expanded) is present in the
model, it is returned unchanged. Imports are managed by im .
|
getResource | public static Resource getResource(Statement s)(Code) | | Answer the resource that is the object of the statement s . If
the object is not a resource, throw a BadObjectException with that statement.
|
getString | public static String getString(Statement s)(Code) | | Answer the plain string object of the statement s . If the
object is not a string literal, throw a BadObjectException with that statement.
|
getString | public static String getString(Statement s, Literal L)(Code) | | Answer the String value of the literal L , which is the
object of the Statement s . If the literal is not an
XSD String or a plain string without a language code, throw a
BadObjectException.
|
loadArbitraryClasses | public static void loadArbitraryClasses(AssemblerGroup g, Model m)(Code) | | Load all the classes which are objects of any (t, ja:loadClass, S)
statements in m . The order in which the classes are
loaded is not specified, and loading stops immediately if any class
cannot be loaded.
Contrast with loadClasses(AssemblerGroup,Model) ,
which loads classes and assumes that those classes are assemblers to
be added to the group.
|
loadAssemblerClasses | public static void loadAssemblerClasses(AssemblerGroup group, Model m)(Code) | | Load all the classes which are objects of any (t, ja:assembler, S) statements
in m . group.implementWIth(t,c) is called
for each statement, where c is an instance of the class named
by S . The order in which the classes are loaded is not
specified, and loading stops immediately if any class cannot be loaded.
|
singleModelRoot | public static Resource singleModelRoot(Model singleRoot)(Code) | | Answer the single resource in singleRoot of type
ja:Model . Otherwise throw an exception.
|
singleRoot | public static Resource singleRoot(Model singleRoot, Resource type)(Code) | | Answer the single resource in singleRoot of type
type . Otherwise throw an exception.
|
withFullModel | public static Resource withFullModel(Resource root)(Code) | | Answer a Resource .equals() to root , but in the expanded
model.
|
|
|