|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.text.Format
org.apache.commons.math.util.CompositeFormat
org.apache.commons.math.geometry.Vector3DFormat
public class Vector3DFormat
Formats a 3D vector in components list format "{x; y; z}".
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.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.text.Format |
---|
Format.Field |
Constructor Summary | |
---|---|
Vector3DFormat()
Create an instance with default settings. |
|
Vector3DFormat(NumberFormat format)
Create an instance with a custom number format for components. |
|
Vector3DFormat(String prefix,
String suffix,
String separator)
Create an instance with custom prefix, suffix and separator. |
|
Vector3DFormat(String prefix,
String suffix,
String separator,
NumberFormat format)
Create an instance with custom prefix, suffix, separator and format for components. |
Method Summary | |
---|---|
StringBuffer |
format(Object obj,
StringBuffer toAppendTo,
FieldPosition pos)
Formats a object to produce a string. |
StringBuffer |
format(Vector3D vector,
StringBuffer toAppendTo,
FieldPosition pos)
Formats a Vector3D object to produce a string. |
static String |
formatVector3D(Vector3D v)
This static method calls Format.format(Object) on a default instance of
Vector3DFormat. |
static Locale[] |
getAvailableLocales()
Get the set of locales for which 3D vectors formats are available. |
NumberFormat |
getFormat()
Get the components format. |
static Vector3DFormat |
getInstance()
Returns the default 3D vector format for the current locale. |
static Vector3DFormat |
getInstance(Locale locale)
Returns the default 3D 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. |
Vector3D |
parse(String source)
Parses a string to produce a Vector3D object. |
Vector3D |
parse(String source,
ParsePosition pos)
Parses a string to produce a Vector3D object. |
Object |
parseObject(String source,
ParsePosition pos)
Parses a string to produce a object. |
Methods inherited from class org.apache.commons.math.util.CompositeFormat |
---|
formatDouble, getDefaultNumberFormat, getDefaultNumberFormat, parseAndIgnoreWhitespace, parseFixedstring, parseNextCharacter, parseNumber |
Methods inherited from class java.text.Format |
---|
clone, format, formatToCharacterIterator, parseObject |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Vector3DFormat()
The instance uses the default prefix, suffix and separator: "{", "}", and "; " and the default number format for components.
public Vector3DFormat(NumberFormat format)
format
- the custom format for components.public Vector3DFormat(String prefix, String suffix, String separator)
prefix
- prefix to use instead of the default "{"suffix
- suffix to use instead of the default "}"separator
- separator to use instead of the default "; "public Vector3DFormat(String prefix, String suffix, String separator, NumberFormat format)
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 Detail |
---|
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 Vector3DFormat getInstance()
public static Vector3DFormat getInstance(Locale locale)
locale
- the specific locale used by the format.
public static String formatVector3D(Vector3D v)
Format.format(Object)
on a default instance of
Vector3DFormat.
v
- Vector3D object to format
public StringBuffer format(Vector3D vector, StringBuffer toAppendTo, FieldPosition pos)
Vector3D
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 field
public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
obj
must be a Vector3D
object. Any other type of
object will result in an IllegalArgumentException
being thrown.
format
in class Format
obj
- 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
IllegalArgumentException
- is obj
is not a valid type.Format.format(java.lang.Object, java.lang.StringBuffer, java.text.FieldPosition)
public Vector3D parse(String source) throws ParseException
Vector3D
object.
source
- the string to parse
Vector3D
object.
ParseException
- if the beginning of the specified string
cannot be parsed.public Vector3D parse(String source, ParsePosition pos)
Vector3D
object.
source
- the string to parsepos
- input/ouput parsing parameter.
Vector3D
object.public Object parseObject(String source, ParsePosition pos)
parseObject
in class Format
source
- the string to parsepos
- input/ouput parsing parameter.
Format.parseObject(java.lang.String, java.text.ParsePosition)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |