Codota Logo
RuleBasedCollatorICU.setDecomposition
Code IndexAdd Codota to your IDE (free)

How to use
setDecomposition
method
in
libcore.icu.RuleBasedCollatorICU

Best Java code snippets using libcore.icu.RuleBasedCollatorICU.setDecomposition (Showing top 7 results out of 315)

  • Common ways to obtain RuleBasedCollatorICU
private void myMethod () {
RuleBasedCollatorICU r =
  • Codota Iconnew RuleBasedCollatorICU(Locale.getDefault())
  • Codota IconString rules;new RuleBasedCollatorICU(rules)
  • Smart code suggestions by Codota
}
origin: robovm/robovm

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: MobiVM/robovm

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: FlexoVM/flexovm

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: ibinti/bugvm

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: com.gluonhq/robovm-rt

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
origin: com.bugvm/bugvm-rt

/**
 * Sets the decomposition rule for this collator.
 *
 * @param value
 *            the decomposition rule, either {@code NO_DECOMPOSITION} or
 *            {@code CANONICAL_DECOMPOSITION}. {@code FULL_DECOMPOSITION}
 *            is not supported.
 * @throws IllegalArgumentException
 *            if the provided decomposition rule is not valid. This includes
 *            {@code FULL_DECOMPOSITION}.
 */
public void setDecomposition(int value) {
  icuColl.setDecomposition(decompositionMode_Java_ICU(value));
}
libcore.icuRuleBasedCollatorICUsetDecomposition

Popular methods of RuleBasedCollatorICU

  • <init>
  • characterIteratorToString
  • clone
  • compare
  • equals
  • getCollationElementIterator
  • getCollationKey
  • getDecomposition
  • getRules
  • getStrength
  • setStrength
  • setStrength

Popular in Java

  • Making http post requests using okhttp
  • startActivity (Activity)
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now