Class NumberFormat.Field
java.lang.Object
java.text.AttributedCharacterIterator.Attribute
java.text.Format.Field
java.text.NumberFormat.Field
- All Implemented Interfaces:
Serializable
- Enclosing class:
NumberFormat
Defines constants that are used as attribute keys in the
AttributedCharacterIterator returned
from NumberFormat.formatToCharacterIterator and as
field identifiers in FieldPosition.- Since:
- 1.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NumberFormat.FieldConstant identifying the currency field.static final NumberFormat.FieldConstant identifying the decimal separator field.static final NumberFormat.FieldConstant identifying the exponent field.static final NumberFormat.FieldConstant identifying the exponent sign field.static final NumberFormat.FieldConstant identifying the exponent symbol field.static final NumberFormat.FieldConstant identifying the fraction field.static final NumberFormat.FieldConstant identifying the grouping separator field.static final NumberFormat.FieldConstant identifying the integer field.static final NumberFormat.FieldConstant identifying the percent field.static final NumberFormat.FieldConstant identifying the permille field.static final NumberFormat.FieldConstant identifying the prefix field.static final NumberFormat.FieldConstant identifying the sign field.static final NumberFormat.FieldConstant identifying the suffix field.Fields declared in class AttributedCharacterIterator.Attribute
INPUT_METHOD_SEGMENT, LANGUAGE, READINGModifier and TypeFieldDescriptionstatic final AttributedCharacterIterator.AttributeAttribute key for input method segments.static final AttributedCharacterIterator.AttributeAttribute key for the language of some text.static final AttributedCharacterIterator.AttributeAttribute key for the reading of some text. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ObjectResolves instances being deserialized to the predefined constants.Methods declared in class AttributedCharacterIterator.Attribute
equals, getName, hashCode, toStringMethods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
INTEGER
Constant identifying the integer field. -
FRACTION
Constant identifying the fraction field. -
EXPONENT
Constant identifying the exponent field. -
DECIMAL_SEPARATOR
Constant identifying the decimal separator field. -
SIGN
Constant identifying the sign field. -
GROUPING_SEPARATOR
Constant identifying the grouping separator field. -
EXPONENT_SYMBOL
Constant identifying the exponent symbol field. -
PERCENT
Constant identifying the percent field. -
PERMILLE
Constant identifying the permille field. -
CURRENCY
Constant identifying the currency field. -
EXPONENT_SIGN
Constant identifying the exponent sign field. -
PREFIX
-
SUFFIX
-
-
Constructor Details
-
Field
Creates a Field instance with the specified name.- Parameters:
name- Name of the attribute
-
-
Method Details
-
readResolve
Resolves instances being deserialized to the predefined constants.- Overrides:
readResolvein classAttributedCharacterIterator.Attribute- Returns:
- resolved NumberFormat.Field constant
- Throws:
InvalidObjectException- if the constant could not be resolved.
-