java.text.SimpleDateFormat.formatToCharacterIteratorImpl()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(6.3k)|赞(0)|评价(0)|浏览(125)

本文整理了Java中java.text.SimpleDateFormat.formatToCharacterIteratorImpl()方法的一些代码示例,展示了SimpleDateFormat.formatToCharacterIteratorImpl()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SimpleDateFormat.formatToCharacterIteratorImpl()方法的具体详情如下:
包路径:java.text.SimpleDateFormat
类名称:SimpleDateFormat
方法名:formatToCharacterIteratorImpl

SimpleDateFormat.formatToCharacterIteratorImpl介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: MobiVM/robovm

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: ibinti/bugvm

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Formats the specified object using the rules of this simple date format
 * and returns an {@code AttributedCharacterIterator} with the formatted
 * date and attributes.
 *
 * @param object
 *            the object to format.
 * @return an {@code AttributedCharacterIterator} with the formatted date
 *         and attributes.
 * @throws NullPointerException
 *            if the object is {@code null}.
 * @throws IllegalArgumentException
 *            if the object cannot be formatted by this simple date
 *            format.
 */
@Override
public AttributedCharacterIterator formatToCharacterIterator(Object object) {
  if (object == null) {
    throw new NullPointerException("object == null");
  }
  if (object instanceof Date) {
    return formatToCharacterIteratorImpl((Date) object);
  }
  if (object instanceof Number) {
    return formatToCharacterIteratorImpl(new Date(((Number) object).longValue()));
  }
  throw new IllegalArgumentException("Bad class: " + object.getClass());
}

相关文章

SimpleDateFormat类方法