Home | History | Annotate | Download | only in text

Lines Matching defs:DEFAULT

60  * <p>{@code DateFormat} provides many class methods for obtaining default date/time
61 * formatters based on the default or a given locale and a number of formatting
372 * <p> By default, parsing is lenient: If the input is not in the form used
440 * Constant for default style pattern. Its value is MEDIUM.
442 public static final int DEFAULT = MEDIUM;
445 * Gets the time formatter with the default formatting style
446 * for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
448 * {@link #getTimeInstance(int, Locale) getTimeInstance(DEFAULT,
456 return get(DEFAULT, 0, 1, Locale.getDefault(Locale.Category.FORMAT));
461 * for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
491 * Gets the date formatter with the default formatting style
492 * for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
494 * {@link #getDateInstance(int, Locale) getDateInstance(DEFAULT,
502 return get(0, DEFAULT, 2, Locale.getDefault(Locale.Category.FORMAT));
507 * for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
537 * Gets the date/time formatter with the default formatting style
538 * for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
540 * {@link #getDateTimeInstance(int, int, Locale) getDateTimeInstance(DEFAULT,
541 * DEFAULT, Locale.getDefault(Locale.Category.FORMAT))}.
548 return get(DEFAULT, DEFAULT, 3, Locale.getDefault(Locale.Category.FORMAT));
553 * formatting styles for the default {@link java.util.Locale.Category#FORMAT FORMAT} locale.
586 * Get a default date/time formatter that uses the SHORT style for both the
595 // Android-changed: Added support for overriding locale default 12 / 24 hour preference.
597 * {@code null}: use Locale default. {@code true}: force 24-hour format.
605 * {@code null}: use Locale default. {@code true}: force 24-hour format.
630 * Set the calendar to be used by this date format. Initially, the default
631 * calendar for the specified or default locale is used.