congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
NativeDecimalFormat.setAttribute
Code IndexAdd Tabnine to your IDE (free)

How to use
setAttribute
method
in
libcore.icu.NativeDecimalFormat

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

origin: robovm/robovm

public void setGroupingUsed(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_GROUPING_USED, i);
}
origin: robovm/robovm

public void setParseIntegerOnly(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_PARSE_INT_ONLY, i);
}
origin: robovm/robovm

public void setDecimalSeparatorAlwaysShown(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_DECIMAL_ALWAYS_SHOWN, i);
}
origin: robovm/robovm

public void setGroupingSize(int value) {
  setAttribute(this.address, UNUM_GROUPING_SIZE, value);
}
origin: robovm/robovm

public void setMaximumIntegerDigits(int value) {
  setAttribute(this.address, UNUM_MAX_INTEGER_DIGITS, value);
}
origin: robovm/robovm

public void setMinimumIntegerDigits(int value) {
  setAttribute(this.address, UNUM_MIN_INTEGER_DIGITS, value);
}
origin: robovm/robovm

public void setMaximumFractionDigits(int value) {
  setAttribute(this.address, UNUM_MAX_FRACTION_DIGITS, value);
}
origin: robovm/robovm

public void setMinimumFractionDigits(int value) {
  setAttribute(this.address, UNUM_MIN_FRACTION_DIGITS, value);
}
origin: robovm/robovm

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: MobiVM/robovm

public void setGroupingUsed(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_GROUPING_USED, i);
}
origin: MobiVM/robovm

public void setDecimalSeparatorAlwaysShown(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_DECIMAL_ALWAYS_SHOWN, i);
}
origin: ibinti/bugvm

public void setDecimalSeparatorAlwaysShown(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_DECIMAL_ALWAYS_SHOWN, i);
}
origin: com.bugvm/bugvm-rt

public void setDecimalSeparatorAlwaysShown(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_DECIMAL_ALWAYS_SHOWN, i);
}
origin: com.bugvm/bugvm-rt

public void setParseIntegerOnly(boolean value) {
  int i = value ? -1 : 0;
  setAttribute(this.address, UNUM_PARSE_INT_ONLY, i);
}
origin: MobiVM/robovm

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: ibinti/bugvm

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: com.gluonhq/robovm-rt

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: com.mobidevelop.robovm/robovm-rt

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: com.bugvm/bugvm-rt

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
origin: FlexoVM/flexovm

public void setMultiplier(int value) {
  setAttribute(this.address, UNUM_MULTIPLIER, value);
  // Update the cached BigDecimal for multiplier.
  multiplierBigDecimal = BigDecimal.valueOf(value);
}
libcore.icuNativeDecimalFormatsetAttribute

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

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • startActivity (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Path (java.nio.file)
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • 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