Home | History | Annotate | Download | only in text

Lines Matching defs:PLAIN

60  * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
66 * fmt.format(Direction.PLAIN, AbsoluteUnit.NOW); // "now"
287 * Plain, which means the absence of a qualifier
290 PLAIN,
576 * unit this can occur with NOW which can only take PLAIN.
580 if (unit == AbsoluteUnit.NOW && direction != Direction.PLAIN) {
581 throw new IllegalArgumentException("NOW can only accept direction PLAIN.");
584 // Get plain day of week names from DateFormatSymbols.
585 if ((direction == Direction.PLAIN) && (AbsoluteUnit.SUNDAY.ordinal() <= unit.ordinal() &&
594 // Not PLAIN, or not a weekday.
654 direction = Direction.PLAIN;
1036 if (unitStrings.get(Direction.PLAIN) == null) {
1037 unitStrings.put(Direction.PLAIN, valueString);
1130 if (dirMap.get(Direction.PLAIN) == null) {
1131 dirMap.put(Direction.PLAIN, value.toString());