The data format used for encoding the data in a {@link Dataset} when stored in a{@link DatasetRepository}.
There are a small number of formats provided, the default is {@link Formats#AVRO}, which will be used when no format is explicitly configured.
@since 0.2.0Describes the format of a document.
Format
is an abstract base class for formatting locale-sensitive information such as dates, messages, and numbers. Format
defines the programming interface for formatting locale-sensitive objects into String
s (the format
method) and for parsing String
s back into objects (the parseObject
method).
Generally, a format's parseObject
method must be able to parse any string formatted by its format
method. However, there may be exceptional cases where this is not possible. For example, a format
method might create two adjacent integer numbers with no separator in between, and in this case the parseObject
could not tell which digits belong to which number.
The Java Platform provides three specialized subclasses of Format
-- DateFormat
, MessageFormat
, and NumberFormat
--for formatting dates, messages, and numbers, respectively.
Concrete subclasses must implement three methods:
format(Object obj, StringBuffer toAppendTo, FieldPosition pos)
formatToCharacterIterator(Object obj)
parseObject(String source, ParsePosition pos)
MessageFormat
. Subclasses often also provide additional format
methods for specific input types as well as parse
methods for specific result types. Any parse
method that does not take a ParsePosition
argument should throw ParseException
when no text in the required format is at the beginning of the input text. Most subclasses will also implement the following factory methods:
getInstance
for getting a useful format object appropriate for the current locale getInstance(Locale)
for getting a useful format object appropriate for the specified locale getXxxxInstance
methods for more specialized control. For example, the NumberFormat
class provides getPercentInstance
and getCurrencyInstance
methods for getting specialized number formatters. Subclasses of Format
that allow programmers to create objects for locales (with getInstance(Locale)
for example) must also implement the following class method:
public static Locale[] getAvailableLocales()
And finally subclasses may define a set of constants to identify the various fields in the formatted output. These constants are used to create a FieldPosition object which identifies what information is contained in the field and its position in the formatted result. These constants should be named item_FIELD
where item
identifies the field. For examples of these constants, see ERA_FIELD
and its friends in {@link DateFormat}.
Formats are generally not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally. @see java.text.ParsePosition @see java.text.FieldPosition @see java.text.NumberFormat @see java.text.DateFormat @see java.text.MessageFormat @version 1.37, 12/03/05 @author Mark Davis
If a field's value is null
, then the getter returns the value of the report's default field's format (which will never be null
.
@author Jim Menard, jimm@io.com
One format object can be used to format multiple values, thereby amortizing the time required to parse the format string. Example:
double[] values; Format format = new Format("##,##0.###;(##,##0.###);;Nil"); for (int i = 0; i < values.length; i++) { System.out.println("Value #" + i + " is " + format.format(values[i])); }
Still to be implemented:
public void onGet() { Date date = order.deliveryDate(); addModel("deliveryDate", date); }In the page template we use the format object:
Delivery date: $format.date($deliveryDate, "dd MMM yyyy")Which renders the output as:
Delivery date: 21 Jan 2004 |
<format classname="com.mycorp.utils.MyFormat"/>
After a Page is created its format property is set. The ClickServlet will then add this property to the Velocity Context. When subclassing Format ensure it is light weight object, as a new format object will be created for every new Page.
@see PageImports
{@link InventoryPrinter} services indicate supported formats listing any ofthese values in their {@link InventoryPrinter#FORMAT} serviceproperties.
Requestors of inventory printing indicate the desired output format by specifying the respective constant when calling the {@link InventoryPrinter#print(java.io.PrintWriter,Format,boolean)} method.
Round-tripping is guaranteed between the {@link #toString()} and{@link #valueOf(String)} methods.
Several modes are available to effect the way textual content is printed. See the documentation for {@link TextMode} for details. @version $Revision: 1.14 $, $Date: 2009/07/23 05:54:23 $ @author Jason Hunter
The data format used for encoding the data in a {@link Dataset}.
There are a small number of formats provided. The default is {@link Formats#AVRO}, which is used when you do not explicitly configure a format.
@since 0.2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|