All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.text.Collator Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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);
  }-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy