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

How to use
setMinimumFractionDigits
method
in
libcore.icu.NativeDecimalFormat

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

origin: robovm/robovm

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: ibinti/bugvm

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: com.bugvm/bugvm-rt

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: com.gluonhq/robovm-rt

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: MobiVM/robovm

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
origin: FlexoVM/flexovm

/**
 * Sets the minimum number of digits after the decimal point.
 * If the value passed is negative then it is replaced by 0.
 * Regardless of this setting, no more than 340 digits will be used.
 *
 * @param value the minimum number of fraction digits.
 */
@Override
public void setMinimumFractionDigits(int value) {
  super.setMinimumFractionDigits(value);
  ndf.setMinimumFractionDigits(getMinimumFractionDigits());
}
libcore.icuNativeDecimalFormatsetMinimumFractionDigits

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

  • Reactive rest calls using spring rest template
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • JCheckBox (javax.swing)
  • Top 12 Jupyter Notebook extensions
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