public class FormattableFlags extends Object
Formattable.formatTo()
方法和修改的输出格式为Formattables 。
Formattable
的实现负责解释和验证任何标志。
Modifier and Type | Field and Description |
---|---|
static int |
ALTERNATE
需要输出使用替代形式。
|
static int |
LEFT_JUSTIFY
左对齐输出。
|
static int |
UPPERCASE
根据在 formatTo() 方法的formatter参数创建过程中给出的locale的规则将输出转换为大写。
|
public static final int LEFT_JUSTIFY
该标志对应于格式说明符中的'-' ( '\u002d' )。
public static final int UPPERCASE
formatTo()
方法。
输出应等同于以下调用String.toUpperCase(java.util.Locale)
out.toUpperCase()
该标志对应于格式说明符中的'S' ( '\u0053' )。
public static final int ALTERNATE
该标志对应于格式说明符中的'#' ( '\u0023' )。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.