1 *java.util.FormattableFlags* *FormattableFlags* FomattableFlags are passed to th
3 public class FormattableFlags
4 extends |java.lang.Object|
6 |java.util.FormattableFlags_Description|
7 |java.util.FormattableFlags_Fields|
8 |java.util.FormattableFlags_Constructors|
9 |java.util.FormattableFlags_Methods|
11 ================================================================================
13 *java.util.FormattableFlags_Fields*
14 |int_java.util.FormattableFlags.ALTERNATE|
15 |int_java.util.FormattableFlags.LEFT_JUSTIFY|
16 |int_java.util.FormattableFlags.UPPERCASE|
18 *java.util.FormattableFlags_Description*
20 FomattableFlags are passed to the
21 Formattable.formatTo()(|java.util.Formattable|) method and modify the output
22 format for Formattables(|java.util.Formattable|) . Implementations of
23 (|java.util.Formattable|) are responsible for interpreting and validating any
28 *int_java.util.FormattableFlags.ALTERNATE*
30 Requires the output to use an alternate form. The definition of the form is
31 specified by the Formattable.
33 This flag corresponds to '#' ('u0023') in the format specifier.
36 *int_java.util.FormattableFlags.LEFT_JUSTIFY*
38 Left-justifies the output. Spaces ('u0020') will be added at the end of the
39 converted value as required to fill the minimum width of the field. If this
40 flag is not set then the output will be right-justified.
42 This flag corresponds to '-' ('u002d') in the format specifier.
45 *int_java.util.FormattableFlags.UPPERCASE*
47 Converts the output to upper case according to the rules of the
48 locale(|java.util.Locale|) given during creation of the formatter argument of
49 the formatTo()(|java.util.Formattable|) method. The output should be equivalent
50 the following invocation of (|java.lang.String|)
54 This flag corresponds to '^' ('u005e') in the format specifier.