Tabnine Logo
NativeDecimalFormat.applyPattern
Code IndexAdd Tabnine to your IDE (free)

How to use
applyPattern
method
in
libcore.icu.NativeDecimalFormat

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

origin: robovm/robovm

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: robovm/robovm

public void applyLocalizedPattern(String pattern) {
  applyPattern(this.address, true, pattern);
  lastPattern = null;
}
origin: robovm/robovm

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: robovm/robovm

  public NativeDecimalFormat update(LocaleData localeData, String pattern) {
    if (decimalFormat == null) {
      currentPattern = pattern;
      currentLocaleData = localeData;
      decimalFormat = new NativeDecimalFormat(currentPattern, currentLocaleData);
    }
    if (!pattern.equals(currentPattern)) {
      decimalFormat.applyPattern(pattern);
      currentPattern = pattern;
    }
    if (localeData != currentLocaleData) {
      decimalFormat.setDecimalFormatSymbols(localeData);
      currentLocaleData = localeData;
    }
    return decimalFormat;
  }
}
origin: MobiVM/robovm

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: ibinti/bugvm

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: com.bugvm/bugvm-rt

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: MobiVM/robovm

public void applyLocalizedPattern(String pattern) {
  applyPattern(this.address, true, pattern);
  lastPattern = null;
}
origin: com.gluonhq/robovm-rt

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: FlexoVM/flexovm

/**
 * Changes the pattern of this decimal format to the specified pattern which
 * uses non-localized pattern characters.
 *
 * @param pattern
 *            the non-localized pattern.
 * @throws IllegalArgumentException
 *            if the pattern cannot be parsed.
 */
public void applyPattern(String pattern) {
  ndf.applyPattern(pattern);
}
origin: com.mobidevelop.robovm/robovm-rt

public void applyLocalizedPattern(String pattern) {
  applyPattern(this.address, true, pattern);
  lastPattern = null;
}
origin: ibinti/bugvm

public void applyLocalizedPattern(String pattern) {
  applyPattern(this.address, true, pattern);
  lastPattern = null;
}
origin: com.bugvm/bugvm-rt

public void applyLocalizedPattern(String pattern) {
  applyPattern(this.address, true, pattern);
  lastPattern = null;
}
origin: MobiVM/robovm

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: ibinti/bugvm

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: com.mobidevelop.robovm/robovm-rt

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: com.gluonhq/robovm-rt

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: com.bugvm/bugvm-rt

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
origin: FlexoVM/flexovm

public void applyPattern(String pattern) {
  if (lastPattern != null && pattern.equals(lastPattern)) {
    return;
  }
  applyPattern(this.address, false, pattern);
  lastPattern = pattern;
}
libcore.icuNativeDecimalFormatapplyPattern

Popular methods of NativeDecimalFormat

  • <init>
  • applyLocalizedPattern
  • applyPatternImpl
  • clone
  • cloneImpl
  • close
  • equals
    Note: this doesn't check that the underlying native DecimalFormat objects' configured native Decimal
  • formatBigDecimal
  • formatBigInteger
  • formatDigitList
  • formatDouble
  • formatLong
  • formatDouble,
  • formatLong,
  • formatToCharacterIterator,
  • getAttribute,
  • getGroupingSize,
  • getMaximumFractionDigits,
  • getMaximumIntegerDigits,
  • getMinimumFractionDigits,
  • getMinimumIntegerDigits

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • putExtra (Intent)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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