S
- Type of the space.public abstract class VectorFormat<S extends Space> extends Object
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.
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_PREFIX
The default prefix: "{".
|
static String |
DEFAULT_SEPARATOR
The default separator: ", ".
|
static String |
DEFAULT_SUFFIX
The default suffix: "}".
|
Modifier | Constructor and Description |
---|---|
protected |
VectorFormat()
Create an instance with default settings.
|
protected |
VectorFormat(NumberFormat formatIn)
Create an instance with a custom number format for components.
|
protected |
VectorFormat(String prefixIn,
String suffixIn,
String separatorIn)
Create an instance with custom prefix, suffix and separator.
|
protected |
VectorFormat(String prefixIn,
String suffixIn,
String separatorIn,
NumberFormat formatIn)
Create an instance with custom prefix, suffix, separator and format
for components.
|
Modifier and Type | Method and Description |
---|---|
protected StringBuffer |
format(StringBuffer toAppendTo,
FieldPosition pos,
double... coordinates)
Formats the coordinates of a
Vector to produce a string. |
String |
format(Vector<S> vector)
Formats a
Vector object to produce a string. |
abstract StringBuffer |
format(Vector<S> vector,
StringBuffer toAppendTo,
FieldPosition pos)
Formats a
Vector object to produce a string. |
static Locale[] |
getAvailableLocales()
Get the set of locales for which point/vector formats are available.
|
NumberFormat |
getFormat()
Get the components format.
|
String |
getPrefix()
Get the format prefix.
|
String |
getSeparator()
Get the format separator between components.
|
String |
getSuffix()
Get the format suffix.
|
abstract Vector<S> |
parse(String source)
Parses a string to produce a
Vector object. |
abstract Vector<S> |
parse(String source,
ParsePosition pos)
Parses a string to produce a
Vector object. |
protected double[] |
parseCoordinates(int dimension,
String source,
ParsePosition pos)
Parses a string to produce an array of coordinates.
|
public static final String DEFAULT_PREFIX
public static final String DEFAULT_SUFFIX
public static final String DEFAULT_SEPARATOR
protected VectorFormat()
The instance uses the default prefix, suffix and separator: "{", "}", and "; " and the default number format for components.
protected VectorFormat(NumberFormat formatIn)
formatIn
- the custom format for components.protected VectorFormat(String prefixIn, String suffixIn, String separatorIn)
prefixIn
- prefix to use instead of the default "{"suffixIn
- suffix to use instead of the default "}"separatorIn
- separator to use instead of the default "; "protected VectorFormat(String prefixIn, String suffixIn, String separatorIn, NumberFormat formatIn)
prefixIn
- prefix to use instead of the default "{"suffixIn
- suffix to use instead of the default "}"separatorIn
- separator to use instead of the default "; "formatIn
- the custom format for components.public static Locale[] getAvailableLocales()
This is the same set as the NumberFormat
set.
public String getPrefix()
public String getSuffix()
public String getSeparator()
public NumberFormat getFormat()
public String format(Vector<S> vector)
Vector
object to produce a string.vector
- the object to format.public abstract StringBuffer format(Vector<S> vector, StringBuffer toAppendTo, FieldPosition pos)
Vector
object to produce a string.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 fieldprotected StringBuffer format(StringBuffer toAppendTo, FieldPosition pos, double... coordinates)
Vector
to produce a string.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.public abstract Vector<S> parse(String source)
Vector
object.source
- the string to parseVector
object.MathParseException
- if the beginning of the specified string
cannot be parsed.public abstract Vector<S> parse(String source, ParsePosition pos)
Vector
object.source
- the string to parsepos
- input/output parsing parameter.Vector
object.protected double[] parseCoordinates(int dimension, String source, ParsePosition pos)
dimension
- dimension of the spacesource
- the string to parsepos
- input/output parsing parameter.Copyright © 2019 CNES. All Rights Reserved.