public class RealVectorFormat 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.
Constructor and Description |
---|
RealVectorFormat()
Create an instance with default settings.
|
RealVectorFormat(NumberFormat formatIn)
Create an instance with a custom number format for components.
|
RealVectorFormat(String prefixIn,
String suffixIn,
String separatorIn)
Create an instance with custom prefix, suffix and separator.
|
RealVectorFormat(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 |
---|---|
String |
format(RealVector v)
This method calls
format(RealVector,StringBuffer,FieldPosition) . |
StringBuffer |
format(RealVector vector,
StringBuffer toAppendTo,
FieldPosition pos)
Formats a
RealVector object to produce a string. |
static Locale[] |
getAvailableLocales()
Get the set of locales for which real vectors formats are available.
|
NumberFormat |
getFormat()
Get the components format.
|
static RealVectorFormat |
getInstance()
Returns the default real vector format for the current locale.
|
static RealVectorFormat |
getInstance(Locale locale)
Returns the default real vector format for the given locale.
|
String |
getPrefix()
Get the format prefix.
|
String |
getSeparator()
Get the format separator between components.
|
String |
getSuffix()
Get the format suffix.
|
ArrayRealVector |
parse(String source)
Parse a string to produce a
RealVector object. |
ArrayRealVector |
parse(String source,
ParsePosition pos)
Parse a string to produce a
RealVector object. |
public RealVectorFormat()
The instance uses the default prefix, suffix and separator: "{", "}", and "; " and the default number format for components.
public RealVectorFormat(NumberFormat formatIn)
formatIn
- the custom format for components.public RealVectorFormat(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 "; "public RealVectorFormat(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 static RealVectorFormat getInstance()
public static RealVectorFormat getInstance(Locale locale)
locale
- the specific locale used by the format.public String format(RealVector v)
format(RealVector,StringBuffer,FieldPosition)
.v
- RealVector object to format.public StringBuffer format(RealVector vector, StringBuffer toAppendTo, FieldPosition pos)
RealVector
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 fieldpublic ArrayRealVector parse(String source)
RealVector
object.source
- String to parse.RealVector
object.MathParseException
- if the beginning of the specified string
cannot be parsed.public ArrayRealVector parse(String source, ParsePosition pos)
RealVector
object.source
- String to parse.pos
- input/ouput parsing parameter.RealVector
object.Copyright © 2021 CNES. All rights reserved.