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

js.intl.CollatorOptions Maven / Gradle / Ivy

package js.intl;

import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface CollatorOptions extends Any {
    @JSProperty
    @Nullable
    String getUsage();

    @JSProperty
    void setUsage(String usage);

    @JSProperty
    @Nullable
    String getLocaleMatcher();

    @JSProperty
    void setLocaleMatcher(String localeMatcher);

    @JSProperty
    boolean isNumeric();

    @JSProperty
    void setNumeric(boolean numeric);

    @JSProperty
    @Nullable
    String getCaseFirst();

    @JSProperty
    void setCaseFirst(String caseFirst);

    @JSProperty
    @Nullable
    String getSensitivity();

    @JSProperty
    void setSensitivity(String sensitivity);

    @JSProperty
    boolean isIgnorePunctuation();

    @JSProperty
    void setIgnorePunctuation(boolean ignorePunctuation);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy