Tabnine Logo
RuleBasedCollatorICU.getCollationElementIterator
Code IndexAdd Tabnine to your IDE (free)

How to use
getCollationElementIterator
method
in
libcore.icu.RuleBasedCollatorICU

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

origin: robovm/robovm

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: robovm/robovm

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: robovm/robovm

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: MobiVM/robovm

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: MobiVM/robovm

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: FlexoVM/flexovm

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: FlexoVM/flexovm

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: ibinti/bugvm

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: com.gluonhq/robovm-rt

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: com.bugvm/bugvm-rt

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: ibinti/bugvm

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: com.bugvm/bugvm-rt

/**
 * Obtains a {@code CollationElementIterator} for the given string.
 *
 * @param source
 *            the source string.
 * @return the {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(String source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: com.mobidevelop.robovm/robovm-rt

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: com.gluonhq/robovm-rt

public CollationElementIteratorICU getCollationElementIterator(CharacterIterator it) {
  // We only implement the String-based API, so build a string from the iterator.
  return getCollationElementIterator(characterIteratorToString(it));
}
origin: com.gluonhq/robovm-rt

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: MobiVM/robovm

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: ibinti/bugvm

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
origin: FlexoVM/flexovm

/**
 * Obtains a {@code CollationElementIterator} for the given
 * {@code CharacterIterator}. The source iterator's integrity will be
 * preserved since a new copy will be created for use.
 *
 * @param source
 *            the source character iterator.
 * @return a {@code CollationElementIterator} for {@code source}.
 */
public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
  if (source == null) {
    throw new NullPointerException("source == null");
  }
  return new CollationElementIterator(icuColl.getCollationElementIterator(source));
}
libcore.icuRuleBasedCollatorICUgetCollationElementIterator

Popular methods of RuleBasedCollatorICU

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

Popular in Java

  • Reading from database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now