*/
@Override
public String toString() {
Inflector inflector = Inflector.getInstance();
if (count() == 1) {
return "read " + inflector.ordinalize(startingAtIndex()) + " thru " + inflector.ordinalize(endingBefore() - 1)
+ " children of " + of() + " in the \"" + workspaceName + "\" workspace";
}
return "read " + inflector.ordinalize(startingAtIndex()) + " child of " + of() + " in the \"" + workspaceName
+ "\" workspace";
}