Class VectorFormat<S extends Space>
- Type Parameters:
S- Type of the space.
- Direct Known Subclasses:
Vector1DFormat, Vector2DFormat, Vector3DFormat
The prefix and suffix "{" and "}" and the separator "; " can be replaced by any user-defined strings. The number format for components can be configured.
White space is ignored at parse time, even if it is in the prefix, suffix or separator specifications. So even if the default separator does include a space character that is used at format time, both input string "{1;1;1}" and " { 1 ; 1 ; 1 } " will be parsed without error and the same vector will be returned. In the second case, however, the parse position after parsing will be just after the closing curly brace, i.e. just before the trailing space.
Note: using "," as a separator may interfere with the grouping separator
of the default NumberFormat for the current locale. Thus it is advised
to use a NumberFormat instance with disabled grouping in such a case.
- Since:
- 3.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe default prefix: "{".static final StringThe default separator: ", ".static final StringThe default suffix: "}".private final NumberFormatThe format used for components.private final StringPrefix.private final StringSeparator.private final StringSuffix.private final StringTrimmed prefix.private final StringTrimmed separator.private final StringTrimmed suffix. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCreate an instance with default settings.protectedVectorFormat(String prefix, String suffix, String separator) Create an instance with custom prefix, suffix and separator.protectedVectorFormat(String prefix, String suffix, String separator, NumberFormat format) Create an instance with custom prefix, suffix, separator and format for components.protectedVectorFormat(NumberFormat format) Create an instance with a custom number format for components. -
Method Summary
Modifier and TypeMethodDescriptionprotected StringBufferformat(StringBuffer toAppendTo, FieldPosition pos, double... coordinates) Formats the coordinates of aVectorto produce a string.Formats aVectorobject to produce a string.abstract StringBufferformat(Vector<S> vector, StringBuffer toAppendTo, FieldPosition pos) Formats aVectorobject to produce a string.static Locale[]Get the set of locales for which point/vector formats are available.Get the components format.Get the format prefix.Get the format separator between components.Get the format suffix.Parses a string to produce aVectorobject.parse(String source, ParsePosition pos) Parses a string to produce aVectorobject.protected double[]parseCoordinates(int dimension, String source, ParsePosition pos) Parses a string to produce an array of coordinates.
-
Field Details
-
DEFAULT_PREFIX
-
DEFAULT_SUFFIX
-
DEFAULT_SEPARATOR
-
prefix
Prefix. -
suffix
Suffix. -
separator
Separator. -
trimmedPrefix
Trimmed prefix. -
trimmedSuffix
Trimmed suffix. -
trimmedSeparator
Trimmed separator. -
format
The format used for components.
-
-
Constructor Details
-
VectorFormat
protected VectorFormat()Create an instance with default settings.The instance uses the default prefix, suffix and separator: "{", "}", and "; " and the default number format for components.
-
VectorFormat
Create an instance with a custom number format for components.- Parameters:
format- the custom format for components.
-
VectorFormat
Create an instance with custom prefix, suffix and separator.- Parameters:
prefix- prefix to use instead of the default "{"suffix- suffix to use instead of the default "}"separator- separator to use instead of the default "; "
-
VectorFormat
Create an instance with custom prefix, suffix, separator and format for components.- Parameters:
prefix- prefix to use instead of the default "{"suffix- suffix to use instead of the default "}"separator- separator to use instead of the default "; "format- the custom format for components.
-
-
Method Details
-
getAvailableLocales
Get the set of locales for which point/vector formats are available.This is the same set as the
NumberFormatset.- Returns:
- available point/vector format locales.
-
getPrefix
-
getSuffix
-
getSeparator
Get the format separator between components.- Returns:
- format separator.
-
getFormat
-
format
-
format
Formats aVectorobject to produce a string.- Parameters:
vector- the object to format.toAppendTo- where the text is to be appendedpos- On input: an alignment field, if desired. On output: the offsets of the alignment field- Returns:
- the value passed in as toAppendTo.
-
format
Formats the coordinates of aVectorto produce a string.- Parameters:
toAppendTo- where the text is to be appendedpos- On input: an alignment field, if desired. On output: the offsets of the alignment fieldcoordinates- coordinates of the object to format.- Returns:
- the value passed in as toAppendTo.
-
parse
Parses a string to produce aVectorobject.- Parameters:
source- the string to parse- Returns:
- the parsed
Vectorobject. - Throws:
MathParseException- if the beginning of the specified string cannot be parsed.
-
parse
-
parseCoordinates
Parses a string to produce an array of coordinates.- Parameters:
dimension- dimension of the spacesource- the string to parsepos- input/output parsing parameter.- Returns:
- coordinates array.
-