java.text.Collator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-mt-jre-emulation Show documentation
Show all versions of gwt-mt-jre-emulation Show documentation
Additional jre emulation classes for gwt and j2cl.
package java.text;
public class Collator {
private static final Collator INSTANCE = new Collator();
public static final Collator getInstance() {
return INSTANCE;
}
public native int compare(final String source, final String target) /*-{
return source.localeCompare(target);
}-*/;
}