# Print output for @column tags ?>
public
static
final
enum
DateFormat.BooleanAttribute
extends Enum<DateFormat.BooleanAttribute>
| java.lang.Object | ||
| ↳ | java.lang.Enum<android.icu.text.DateFormat.BooleanAttribute> | |
| ↳ | android.icu.text.DateFormat.BooleanAttribute | |
boolean attributes
Enum values | |
|---|---|
DateFormat.BooleanAttribute |
PARSE_ALLOW_NUMERIC
indicates tolerance of numeric data when String data may be assumed. |
DateFormat.BooleanAttribute |
PARSE_ALLOW_WHITESPACE
indicates whitespace tolerance. |
DateFormat.BooleanAttribute |
PARSE_MULTIPLE_PATTERNS_FOR_MATCH
indicates tolerance of pattern mismatch between input data and specified format pattern. |
DateFormat.BooleanAttribute |
PARSE_PARTIAL_LITERAL_MATCH
indicates tolerance of a partial literal match e.g. accepting "--mon-02-march-2011" for a pattern of "'--: 'EEE-WW-MMMM-yyyy" |
Public methods | |
|---|---|
static
DateFormat.BooleanAttribute
|
valueOf(String name)
|
static
final
BooleanAttribute[]
|
values()
|
Inherited methods | |
|---|---|
public static final DateFormat.BooleanAttribute PARSE_ALLOW_NUMERIC
indicates tolerance of numeric data when String data may be assumed. e.g. YEAR_NAME_FIELD
public static final DateFormat.BooleanAttribute PARSE_ALLOW_WHITESPACE
indicates whitespace tolerance. Also included is trailing dot tolerance.
public static final DateFormat.BooleanAttribute PARSE_MULTIPLE_PATTERNS_FOR_MATCH
indicates tolerance of pattern mismatch between input data and specified format pattern. e.g. accepting "September" for a month pattern of MMM ("Sep")
public static final DateFormat.BooleanAttribute PARSE_PARTIAL_LITERAL_MATCH
indicates tolerance of a partial literal match e.g. accepting "--mon-02-march-2011" for a pattern of "'--: 'EEE-WW-MMMM-yyyy"
public static DateFormat.BooleanAttribute valueOf (String name)
| Parameters | |
|---|---|
name |
String |
| Returns | |
|---|---|
DateFormat.BooleanAttribute |
|