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

How to use
setDecimalFormatSymbols
method
in
libcore.icu.NativeDecimalFormat

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

origin: robovm/robovm

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: robovm/robovm

/**
 * Sets the {@code DecimalFormatSymbols} used by this decimal format.
 *
 * @param value
 *            the {@code DecimalFormatSymbols} to set.
 */
public void setDecimalFormatSymbols(DecimalFormatSymbols value) {
  if (value != null) {
    // The Java object is canonical, and we copy down to native code.
    this.symbols = (DecimalFormatSymbols) value.clone();
    ndf.setDecimalFormatSymbols(this.symbols);
  }
}
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: robovm/robovm

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: MobiVM/robovm

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: ibinti/bugvm

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: com.mobidevelop.robovm/robovm-rt

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: com.gluonhq/robovm-rt

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: com.bugvm/bugvm-rt

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: FlexoVM/flexovm

public void setDecimalFormatSymbols(final LocaleData localeData) {
  setDecimalFormatSymbols(this.address, localeData.currencySymbol, localeData.decimalSeparator,
      '#', localeData.exponentSeparator, localeData.groupingSeparator,
      localeData.infinity, localeData.internationalCurrencySymbol, localeData.minusSign,
      localeData.monetarySeparator, localeData.NaN, localeData.patternSeparator,
      localeData.percent, localeData.perMill, localeData.zeroDigit);
}
origin: com.gluonhq/robovm-rt

/**
 * Sets the {@code DecimalFormatSymbols} used by this decimal format.
 *
 * @param value
 *            the {@code DecimalFormatSymbols} to set.
 */
public void setDecimalFormatSymbols(DecimalFormatSymbols value) {
  if (value != null) {
    // The Java object is canonical, and we copy down to native code.
    this.symbols = (DecimalFormatSymbols) value.clone();
    ndf.setDecimalFormatSymbols(this.symbols);
  }
}
origin: FlexoVM/flexovm

/**
 * Sets the {@code DecimalFormatSymbols} used by this decimal format.
 *
 * @param value
 *            the {@code DecimalFormatSymbols} to set.
 */
public void setDecimalFormatSymbols(DecimalFormatSymbols value) {
  if (value != null) {
    // The Java object is canonical, and we copy down to native code.
    this.symbols = (DecimalFormatSymbols) value.clone();
    ndf.setDecimalFormatSymbols(this.symbols);
  }
}
origin: MobiVM/robovm

/**
 * Sets the {@code DecimalFormatSymbols} used by this decimal format.
 *
 * @param value
 *            the {@code DecimalFormatSymbols} to set.
 */
public void setDecimalFormatSymbols(DecimalFormatSymbols value) {
  if (value != null) {
    // The Java object is canonical, and we copy down to native code.
    this.symbols = (DecimalFormatSymbols) value.clone();
    ndf.setDecimalFormatSymbols(this.symbols);
  }
}
origin: ibinti/bugvm

/**
 * Sets the {@code DecimalFormatSymbols} used by this decimal format.
 *
 * @param value
 *            the {@code DecimalFormatSymbols} to set.
 */
public void setDecimalFormatSymbols(DecimalFormatSymbols value) {
  if (value != null) {
    // The Java object is canonical, and we copy down to native code.
    this.symbols = (DecimalFormatSymbols) value.clone();
    ndf.setDecimalFormatSymbols(this.symbols);
  }
}
origin: ibinti/bugvm

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: MobiVM/robovm

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: com.bugvm/bugvm-rt

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: com.gluonhq/robovm-rt

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
origin: FlexoVM/flexovm

/**
 * Copies the DecimalFormatSymbols settings into our native peer in bulk.
 */
public void setDecimalFormatSymbols(final DecimalFormatSymbols dfs) {
  setDecimalFormatSymbols(this.address, dfs.getCurrencySymbol(), dfs.getDecimalSeparator(),
      dfs.getDigit(), dfs.getExponentSeparator(), dfs.getGroupingSeparator(),
      dfs.getInfinity(), dfs.getInternationalCurrencySymbol(), dfs.getMinusSign(),
      dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator(),
      dfs.getPercent(), dfs.getPerMill(), dfs.getZeroDigit());
}
libcore.icuNativeDecimalFormatsetDecimalFormatSymbols

Javadoc

Copies the DecimalFormatSymbols settings into our native peer in bulk.

Popular methods of NativeDecimalFormat

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

Popular in Java

  • Making http post requests using okhttp
  • getExternalFilesDir (Context)
  • getSupportFragmentManager (FragmentActivity)
  • getSharedPreferences (Context)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Top plugins for WebStorm
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