/**
  * This method adds all triples of a given Bindings to the internal list of read triples for these
  * bindings. This method must be overridden by Bindings-subclasses, which support this feature,
  * e.g. BindingsArrayReadTriples
  */
 @Override
 public void addAllTriples(final Bindings bindings) {
   addAllTriples(bindings.getTriples());
 }