/**
* @param ordering the resulting ordering of the list of characters in the pattern
* @return
*/
public PrettyPrinter setOrdering(Comparator ordering) {
this.ordering = new MultiComparator(new Comparator[] {ordering, new UTF16.StringComparator(true,false,0)});
return this;
}