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

How to use
formatToCharacterIterator
method
in
libcore.icu.NativeDecimalFormat

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

origin: robovm/robovm

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: MobiVM/robovm

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: com.gluonhq/robovm-rt

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: ibinti/bugvm

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: com.bugvm/bugvm-rt

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
origin: FlexoVM/flexovm

/**
 * Formats the specified object using the rules of this decimal format and
 * returns an {@code AttributedCharacterIterator} with the formatted number
 * and attributes.
 *
 * @param object
 *            the object to format.
 * @return an AttributedCharacterIterator with the formatted number and
 *         attributes.
 * @throws IllegalArgumentException
 *             if {@code object} cannot be formatted by this format.
 * @throws NullPointerException
 *             if {@code object} is {@code null}.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  return ndf.formatToCharacterIterator(object);
}
libcore.icuNativeDecimalFormatformatToCharacterIterator

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,
  • getAttribute,
  • getGroupingSize,
  • getMaximumFractionDigits,
  • getMaximumIntegerDigits,
  • getMinimumFractionDigits,
  • getMinimumIntegerDigits

Popular in Java

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • setContentView (Activity)
  • requestLocationUpdates (LocationManager)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Permission (java.security)
    Legacy security code; do not use.
  • JCheckBox (javax.swing)
  • Top plugins for Android Studio
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