Class Vector3DFormat
- All Implemented Interfaces:
Serializable,Cloneable
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.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.text.Format
Format.Field -
Constructor Summary
ConstructorsConstructorDescriptionCreate an instance with default settings.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.Vector3DFormat(NumberFormat format) Create an instance with a custom number format for components. -
Method Summary
Modifier and TypeMethodDescriptionformat(Object obj, StringBuffer toAppendTo, FieldPosition pos) Formats a object to produce a string.format(Vector3D vector, StringBuffer toAppendTo, FieldPosition pos) Formats aVector3Dobject to produce a string.static StringThis static method callsFormat.format(Object)on a default instance of Vector3DFormat.static Locale[]Get the set of locales for which 3D vectors formats are available.Get the components format.static Vector3DFormatReturns the default 3D vector format for the current locale.static Vector3DFormatgetInstance(Locale locale) Returns the default 3D vector format for the given locale.Get the format prefix.Get the format separator between components.Get the format suffix.Parses a string to produce aVector3Dobject.parse(String source, ParsePosition pos) Parses a string to produce aVector3Dobject.parseObject(String source, ParsePosition pos) Parses a string to produce a object.Methods inherited from class java.text.Format
clone, format, formatToCharacterIterator, parseObject
-
Constructor Details
-
Vector3DFormat
public Vector3DFormat()Create an instance with default settings.The instance uses the default prefix, suffix and separator: "{", "}", and "; " and the default number format for components.
-
Vector3DFormat
Create an instance with a custom number format for components.- Parameters:
format- the custom format for components.
-
Vector3DFormat
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 "; "
-
Vector3DFormat
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 3D vectors formats are available.This is the same set as the
NumberFormatset.- Returns:
- available 3D vector format locales.
-
getPrefix
Get the format prefix.- Returns:
- format prefix.
-
getSuffix
Get the format suffix.- Returns:
- format suffix.
-
getSeparator
Get the format separator between components.- Returns:
- format separator.
-
getFormat
Get the components format.- Returns:
- components format.
-
getInstance
Returns the default 3D vector format for the current locale.- Returns:
- the default 3D vector format.
-
getInstance
Returns the default 3D vector format for the given locale.- Parameters:
locale- the specific locale used by the format.- Returns:
- the 3D vector format specific to the given locale.
-
formatVector3D
This static method callsFormat.format(Object)on a default instance of Vector3DFormat.- Parameters:
v- Vector3D object to format- Returns:
- A formatted vector
-
format
Formats aVector3Dobject 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 a object to produce a string.objmust be aVector3Dobject. Any other type of object will result in anIllegalArgumentExceptionbeing thrown.- Specified by:
formatin classFormat- Parameters:
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- Returns:
- the value passed in as toAppendTo.
- Throws:
IllegalArgumentException- isobjis not a valid type.- See Also:
-
parse
Parses a string to produce aVector3Dobject.- Parameters:
source- the string to parse- Returns:
- the parsed
Vector3Dobject. - Throws:
ParseException- if the beginning of the specified string cannot be parsed.
-
parse
Parses a string to produce aVector3Dobject.- Parameters:
source- the string to parsepos- input/ouput parsing parameter.- Returns:
- the parsed
Vector3Dobject.
-
parseObject
Parses a string to produce a object.- Specified by:
parseObjectin classFormat- Parameters:
source- the string to parsepos- input/ouput parsing parameter.- Returns:
- the parsed object.
- See Also:
-