* Return a collation key. This is a wrapper around the System.Globalization.Sortkey object,
* where the wrapper implements the required comparison methods.
*/
public Object getCollationKey(String value) {
final SortKey sortKey = comparer.GetSortKey(value, options);
return new SortKeyWrapper(sortKey);
}