66676869707172
@Override public void addStatement(String subjectURIString, URI predicate, String literal) throws ModelRuntimeException { addStatement(new URIImpl(subjectURIString), predicate, new PlainLiteralImpl(literal)); }
51525354555657
@Override public void removeStatement(String subjectURIString, URI predicate, String literal) throws ModelRuntimeException { removeStatement(new URIImpl(subjectURIString), predicate, new PlainLiteralImpl(literal)); }
71727374757677
} @Override public void removeStatement(Resource subject, URI predicate, String literal) throws ModelRuntimeException { removeStatement(subject, predicate, new PlainLiteralImpl(literal)); }