predicateGroupMatches.remove(BLANK_NODE_GROUP);
predicateGroupMatches.remove(LITERAL_GROUP);
}
private void standardMatches() {
groupMatches.put(URI_GROUP, new RegexNodeParser() {
public Node parse(final String line) throws ParseException {
return uriReferenceParser.parseURIReference(line);
}
});
groupMatches.put(NS_LOCAL_NAME_GROUP, new RegexNodeParser() {
public Node parse(final String line) throws ParseException {
return uriReferenceParser.parseURIReferenceWithNamespace(line);
}
});
groupMatches.put(BLANK_NODE_GROUP, new RegexNodeParser() {
public Node parse(final String line) throws ParseException {
return blankNodeParser.parseBlankNode(line);
}
});
groupMatches.put(LITERAL_GROUP, new RegexNodeParser() {
public Node parse(final String line) throws ParseException {
return literalNodeParser.parseLiteral(line);
}
});
}