/** a text search strategy with full unicode locale-sensitive string searching */
public static final Object UNICODE_TEXT_SEARCH_STRATEGY = new UnicodeStrategyFactory();
// this would be an anonymous class if declawer supported them!
private static class UnicodeStrategyFactory implements TextSearchStrategy.Factory {
public TextSearchStrategy create(int mode, String filter) {
return new UnicodeCaseInsensitiveTextSearchStrategy(mode);
}