Package org.apache.sis.measure
Class RangeFormat.Field
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- RangeFormat
public static final class RangeFormat.Field extends Format.Field
Constants that are used as attribute keys in the iterator returned fromRangeFormat.formatToCharacterIterator(Object)
.- Since:
- 0.3
- See Also:
- Serialized Form
Defined in the
sis-utility
module
-
-
Field Summary
Fields Modifier and Type Field Description static RangeFormat.Field
MAX_VALUE
Identifies the maximal value field in a range.static RangeFormat.Field
MIN_VALUE
Identifies the minimal value field in a range.static RangeFormat.Field
UNIT
Identifies the unit field in a range, if any.-
Fields inherited from class AttributedCharacterIterator.Attribute
INPUT_METHOD_SEGMENT, LANGUAGE, READING
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object
readResolve()
Invoked on deserialization for resolving this instance to one of the predefined constants.-
Methods inherited from class AttributedCharacterIterator.Attribute
equals, getName, hashCode, toString
-
-
-
-
Field Detail
-
MIN_VALUE
public static final RangeFormat.Field MIN_VALUE
Identifies the minimal value field in a range. When formatting a string, this value may be specified to theFieldPosition
constructor in order to get the bounding index where the minimal value has been written.
-
MAX_VALUE
public static final RangeFormat.Field MAX_VALUE
Identifies the maximal value field in a range. When formatting a string, this value may be specified to theFieldPosition
constructor in order to get the bounding index where the maximal value has been written.
-
UNIT
public static final RangeFormat.Field UNIT
Identifies the unit field in a range, if any. When formatting a string, this value may be specified to theFieldPosition
constructor in order to get the bounding index where the unit has been written.
-
-
Method Detail
-
readResolve
protected final Object readResolve() throws InvalidObjectException
Invoked on deserialization for resolving this instance to one of the predefined constants.- Overrides:
readResolve
in classAttributedCharacterIterator.Attribute
- Returns:
- one of the predefined constants.
- Throws:
InvalidObjectException
- if this instance can not be resolved.
-
-