- java.lang.Object
-
- java.text.AttributedCharacterIterator.Attribute
-
- java.text.Format.Field
-
- java.text.NumberFormat.Field
-
- All Implemented Interfaces:
-
Serializable
- Enclosing class:
- NumberFormat
public static class NumberFormat.Field extends Format.Field
定义了用于作为属性键常数AttributedCharacterIterator
从返回NumberFormat.formatToCharacterIterator
和字段标识符在FieldPosition
。- 从以下版本开始:
- 1.4
- 另请参见:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field 描述 static NumberFormat.Field
CURRENCY
不断识别货币字段。static NumberFormat.Field
DECIMAL_SEPARATOR
常数标识小数分隔符字段。static NumberFormat.Field
EXPONENT
常数识别指数字段。static NumberFormat.Field
EXPONENT_SIGN
常数识别指数符号字段。static NumberFormat.Field
EXPONENT_SYMBOL
常数识别指数符号字段。static NumberFormat.Field
FRACTION
常数识别分数字段。static NumberFormat.Field
GROUPING_SEPARATOR
常数标识分组分隔符字段。static NumberFormat.Field
INTEGER
常量识别整数字段。static NumberFormat.Field
PERCENT
不断识别百分比字段。static NumberFormat.Field
PERMILLE
常数识别容错字段。static NumberFormat.Field
SIGN
常量识别符号字段。-
Fields inherited from class java.text.AttributedCharacterIterator.Attribute
INPUT_METHOD_SEGMENT, LANGUAGE, READING
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 protected Object
readResolve()
解析反序列化为预定义常量的实例。-
Methods inherited from class java.text.AttributedCharacterIterator.Attribute
equals, getName, hashCode, toString
-
-
-
-
字段详细信息
-
INTEGER
public static final NumberFormat.Field INTEGER
常量识别整数字段。
-
FRACTION
public static final NumberFormat.Field FRACTION
常数识别分数字段。
-
EXPONENT
public static final NumberFormat.Field EXPONENT
常数识别指数字段。
-
DECIMAL_SEPARATOR
public static final NumberFormat.Field DECIMAL_SEPARATOR
常数标识小数分隔符字段。
-
SIGN
public static final NumberFormat.Field SIGN
常量识别符号字段。
-
GROUPING_SEPARATOR
public static final NumberFormat.Field GROUPING_SEPARATOR
常数标识分组分隔符字段。
-
EXPONENT_SYMBOL
public static final NumberFormat.Field EXPONENT_SYMBOL
常数识别指数符号字段。
-
PERCENT
public static final NumberFormat.Field PERCENT
不断识别百分比字段。
-
PERMILLE
public static final NumberFormat.Field PERMILLE
常数识别容错字段。
-
CURRENCY
public static final NumberFormat.Field CURRENCY
不断识别货币字段。
-
EXPONENT_SIGN
public static final NumberFormat.Field EXPONENT_SIGN
常数识别指数符号字段。
-
-
构造方法详细信息
-
Field
protected Field(String name)
创建具有指定名称的Field实例。- 参数
-
name
- 属性名称
-
-
方法详细信息
-
readResolve
protected Object readResolve() throws InvalidObjectException
解析反序列化为预定义常量的实例。- 重写:
-
readResolve
在AttributedCharacterIterator.Attribute
- 结果
- 解决了NumberFormat.Field常量
- 异常
-
InvalidObjectException
- 如果常数无法解决。
-
-