/** Parse a string to obtain a Triple */
public static Triple parseTriple(String str, PrefixMapping pmap)
{
Item item = parse(str, pmap) ;
if ( !item.isList() )
throw new ARQException("Not a list: "+str) ;
return BuilderGraph.buildTriple(item.getList()) ;
}