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

de.knightsoftnet.mtwidgets.supersource.java.text.Collator Maven / Gradle / Ivy

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 - 2025 Weber Informatics LLC | Privacy Policy