if(propertyURI == null)
throw new IllegalArgumentException("propertyURI may not be null");
if(returnType == null)
throw new IllegalArgumentException("returnType may not be null");
assertOpen(model);
Node node = RDFReactorRuntime.java2node(model, value);
return new ReactorResult<T>(model, new TriplePatternImpl(Variable.ANY, propertyURI, node,
TriplePatternImpl.SPO.SUBJECT), returnType);
}