/* GENERATED SOURCE. DO NOT MODIFY. */ // © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* * Copyright (C) 1996-2016, International Business Machines * Corporation and others. All Rights Reserved. */ package android.icu.text; import java.io.IOException; import java.io.InvalidObjectException; import java.io.ObjectInputStream; import java.text.FieldPosition; import java.text.Format; import java.text.ParseException; import java.text.ParsePosition; import java.util.Arrays; import java.util.Date; import java.util.EnumSet; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.MissingResourceException; import android.icu.impl.ICUResourceBundle; import android.icu.impl.RelativeDateFormat; import android.icu.util.Calendar; import android.icu.util.GregorianCalendar; import android.icu.util.TimeZone; import android.icu.util.ULocale; import android.icu.util.ULocale.Category; /** * [icu enhancement] ICU's replacement for {@link java.text.DateFormat}. Methods, fields, and other functionality specific to ICU are labeled '[icu]'. * *
* DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates or time in a
* language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows for formatting
* (i.e., date -> text), parsing (text -> date), and normalization. The date is represented as a Date
* object or as the milliseconds since January 1, 1970, 00:00:00 GMT.
*
*
* DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale * conventions for months, days of the week, or even the calendar format: lunar vs. solar. It provides many class * methods for obtaining default date/time formatters based on the default for a given locale and a number of formatting * styles or arbitrary "skeletons". *
* To format a date for the current Locale, use one of the static factory methods: * *
* myString = DateFormat.getDateInstance().format(myDate); * myString = DateFormat.getPatternInstance(DateFormat.YEAR_ABBR_MONTH).format(myDate); **
* If you are formatting multiple numbers, it is more efficient to get the format and use it multiple times so that the * system doesn't have to fetch the information about the local language and country conventions multiple times. * *
* DateFormat df = DateFormat.getDateInstance(); * for (int i = 0; i < a.length; ++i) { * output.println(df.format(myDate[i]) + "; "); * } **
* To format a date for a different Locale, specify it in the call to getDateInstance(). * *
* DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE); **
* You can use a DateFormat to parse also. * *
* myDate = df.parse(myString); **
* There are many static factory methods available. Use getDateInstance to get the normal date format for that country. * Use getTimeInstance to get the time format for that country. Use getDateTimeInstance to get a date and time format. * You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM * to LONG to FULL. The exact result depends on the locale, but generally: *
* Use getPatternInstance to format with a skeleton. Typically this is with a predefined skeleton, like * {@link #YEAR_ABBR_MONTH} for something like "Sept 2012". If you don't want to use one of the predefined skeletons, * you can supply your own. The skeletons are like the patterns in SimpleDateFormat, except they: *
* You can also set the time zone on the format if you wish. If you want even more control over the format or parsing, * (or want to give your users more control), you can try casting the DateFormat you get from the factory methods to a * SimpleDateFormat. This will work for the majority of countries; just remember to put it in a try block in case you * encounter an unusual one. * *
* You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to *
DateFormat
uses to produce the time field
* values needed to implement date and time formatting. Subclasses should
* initialize this to a calendar appropriate for the locale associated with
* this DateFormat
.
* @serial
*/
protected Calendar calendar;
/**
* The number formatter that DateFormat
uses to format numbers
* in dates and times. Subclasses should initialize this to a number format
* appropriate for the locale associated with this DateFormat
.
* @serial
*/
protected NumberFormat numberFormat;
/**
* FieldPosition selector for 'G' field alignment,
* corresponding to the {@link Calendar#ERA} field.
*/
public final static int ERA_FIELD = 0;
/**
* FieldPosition selector for 'y' field alignment,
* corresponding to the {@link Calendar#YEAR} field.
*/
public final static int YEAR_FIELD = 1;
/**
* FieldPosition selector for 'M' field alignment,
* corresponding to the {@link Calendar#MONTH} field.
*/
public final static int MONTH_FIELD = 2;
/**
* FieldPosition selector for 'd' field alignment,
* corresponding to the {@link Calendar#DATE} field.
*/
public final static int DATE_FIELD = 3;
/**
* FieldPosition selector for 'k' field alignment,
* corresponding to the {@link Calendar#HOUR_OF_DAY} field.
* HOUR_OF_DAY1_FIELD is used for the one-based 24-hour clock.
* For example, 23:59 + 01:00 results in 24:59.
*/
public final static int HOUR_OF_DAY1_FIELD = 4;
/**
* FieldPosition selector for 'H' field alignment,
* corresponding to the {@link Calendar#HOUR_OF_DAY} field.
* HOUR_OF_DAY0_FIELD is used for the zero-based 24-hour clock.
* For example, 23:59 + 01:00 results in 00:59.
*/
public final static int HOUR_OF_DAY0_FIELD = 5;
/**
* FieldPosition selector for 'm' field alignment,
* corresponding to the {@link Calendar#MINUTE} field.
*/
public final static int MINUTE_FIELD = 6;
/**
* FieldPosition selector for 's' field alignment,
* corresponding to the {@link Calendar#SECOND} field.
*/
public final static int SECOND_FIELD = 7;
/**
* [icu] FieldPosition selector for 'S' field alignment,
* corresponding to the {@link Calendar#MILLISECOND} field.
*
* Note: Time formats that use 'S' can display a maximum of three
* significant digits for fractional seconds, corresponding to millisecond
* resolution and a fractional seconds sub-pattern of SSS. If the
* sub-pattern is S or SS, the fractional seconds value will be truncated
* (not rounded) to the number of display places specified. If the
* fractional seconds sub-pattern is longer than SSS, the additional
* display places will be filled with zeros.
*/
public final static int FRACTIONAL_SECOND_FIELD = 8;
/**
* Alias for FRACTIONAL_SECOND_FIELD.
*/
public final static int MILLISECOND_FIELD = FRACTIONAL_SECOND_FIELD;
/**
* FieldPosition selector for 'E' field alignment,
* corresponding to the {@link Calendar#DAY_OF_WEEK} field.
*/
public final static int DAY_OF_WEEK_FIELD = 9;
/**
* FieldPosition selector for 'D' field alignment,
* corresponding to the {@link Calendar#DAY_OF_YEAR} field.
*/
public final static int DAY_OF_YEAR_FIELD = 10;
/**
* FieldPosition selector for 'F' field alignment,
* corresponding to the {@link Calendar#DAY_OF_WEEK_IN_MONTH} field.
*/
public final static int DAY_OF_WEEK_IN_MONTH_FIELD = 11;
/**
* FieldPosition selector for 'w' field alignment,
* corresponding to the {@link Calendar#WEEK_OF_YEAR} field.
*/
public final static int WEEK_OF_YEAR_FIELD = 12;
/**
* FieldPosition selector for 'W' field alignment,
* corresponding to the {@link Calendar#WEEK_OF_MONTH} field.
*/
public final static int WEEK_OF_MONTH_FIELD = 13;
/**
* FieldPosition selector for 'a' field alignment,
* corresponding to the {@link Calendar#AM_PM} field.
*/
public final static int AM_PM_FIELD = 14;
/**
* FieldPosition selector for 'h' field alignment,
* corresponding to the {@link Calendar#HOUR} field.
* HOUR1_FIELD is used for the one-based 12-hour clock.
* For example, 11:30 PM + 1 hour results in 12:30 AM.
*/
public final static int HOUR1_FIELD = 15;
/**
* FieldPosition selector for 'K' field alignment,
* corresponding to the {@link Calendar#HOUR} field.
* HOUR0_FIELD is used for the zero-based 12-hour clock.
* For example, 11:30 PM + 1 hour results in 00:30 AM.
*/
public final static int HOUR0_FIELD = 16;
/**
* FieldPosition selector for 'z' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields.
*/
public final static int TIMEZONE_FIELD = 17;
/**
* [icu] FieldPosition selector for 'Y' field alignment,
* corresponding to the {@link Calendar#YEAR_WOY} field.
*/
public final static int YEAR_WOY_FIELD = 18;
/**
* [icu] FieldPosition selector for 'e' field alignment,
* corresponding to the {@link Calendar#DOW_LOCAL} field.
*/
public final static int DOW_LOCAL_FIELD = 19;
/**
* [icu] FieldPosition selector for 'u' field alignment,
* corresponding to the {@link Calendar#EXTENDED_YEAR} field.
*/
public final static int EXTENDED_YEAR_FIELD = 20;
/**
* [icu] FieldPosition selector for 'g' field alignment,
* corresponding to the {@link Calendar#JULIAN_DAY} field.
*/
public final static int JULIAN_DAY_FIELD = 21;
/**
* [icu] FieldPosition selector for 'A' field alignment,
* corresponding to the {@link Calendar#MILLISECONDS_IN_DAY} field.
*/
public final static int MILLISECONDS_IN_DAY_FIELD = 22;
/**
* [icu] FieldPosition selector for 'Z' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields.
*/
public final static int TIMEZONE_RFC_FIELD = 23;
/**
* [icu] FieldPosition selector for 'v' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields. This displays the generic zone
* name, if available.
*/
public final static int TIMEZONE_GENERIC_FIELD = 24;
/**
* [icu] FieldPosition selector for 'c' field alignment,
* corresponding to the {@link Calendar#DAY_OF_WEEK} field.
* This displays the stand alone day name, if available.
*/
public final static int STANDALONE_DAY_FIELD = 25;
/**
* [icu] FieldPosition selector for 'L' field alignment,
* corresponding to the {@link Calendar#MONTH} field.
* This displays the stand alone month name, if available.
*/
public final static int STANDALONE_MONTH_FIELD = 26;
/**
* [icu] FieldPosition selector for 'Q' field alignment,
* corresponding to the {@link Calendar#MONTH} field.
* This displays the quarter.
*/
public final static int QUARTER_FIELD = 27;
/**
* [icu] FieldPosition selector for 'q' field alignment,
* corresponding to the {@link Calendar#MONTH} field.
* This displays the stand alone quarter, if available.
*/
public final static int STANDALONE_QUARTER_FIELD = 28;
/**
* [icu] FieldPosition selector for 'V' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields. This displays the fallback timezone
* name when VVVV is specified, and the short standard or daylight
* timezone name ignoring commonlyUsed when a single V is specified.
*/
public final static int TIMEZONE_SPECIAL_FIELD = 29;
/**
* [icu] FieldPosition selector for 'U' field alignment,
* corresponding to the {@link Calendar#YEAR} field.
* This displays the cyclic year name, if available.
*/
public final static int YEAR_NAME_FIELD = 30;
/**
* [icu] FieldPosition selector for 'O' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields. This displays the
* localized GMT format.
*/
public final static int TIMEZONE_LOCALIZED_GMT_OFFSET_FIELD = 31;
/**
* [icu] FieldPosition selector for 'X' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields. This displays the
* ISO 8601 local time offset format or UTC indicator ("Z").
*/
public final static int TIMEZONE_ISO_FIELD = 32;
/**
* [icu] FieldPosition selector for 'x' field alignment,
* corresponding to the {@link Calendar#ZONE_OFFSET} and
* {@link Calendar#DST_OFFSET} fields. This displays the
* ISO 8601 local time offset format.
*/
public final static int TIMEZONE_ISO_LOCAL_FIELD = 33;
/**
* [icu] FieldPosition selector for 'r' field alignment,
* corresponding to the {@link Calendar#EXTENDED_YEAR} field
* of the *related* calendar which may be different than the
* one used by the DateFormat.
* @deprecated This API is ICU internal only.
* @hide draft / provisional / internal are hidden on Android
*/
@Deprecated
final static int RELATED_YEAR = 34;
/**
* [icu] FieldPosition selector for 'b' field alignment.
* No related Calendar field.
* This displays the fixed day period (am/pm/midnight/noon).
*/
public final static int AM_PM_MIDNIGHT_NOON_FIELD = 35;
/**
* [icu] FieldPosition selector for 'B' field alignment.
* No related Calendar field.
* This displays the flexible day period.
*/
public final static int FLEXIBLE_DAY_PERIOD_FIELD = 36;
/**
* [icu] FieldPosition selector time separator,
* no related Calendar field. No pattern character is currently
* defined for this.
* @deprecated This API is ICU internal only.
* @hide draft / provisional / internal are hidden on Android
*/
@Deprecated
public final static int TIME_SEPARATOR = 37;
/**
* [icu] Number of FieldPosition selectors for DateFormat.
* Valid selectors range from 0 to FIELD_COUNT-1.
* @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420.
* @hide unsupported on Android
*/
@Deprecated
public final static int FIELD_COUNT = 38;
// A previous comment for the above stated that we must have
// DateFormat.FIELD_COUNT == DateFormatSymbols.patternChars.length()
// but that does not seem to be the case, and in fact since there is
// no pattern character currently defined for TIME_SEPARATOR it is
// currently the case that
// DateFormat.FIELD_COUNT == DateFormatSymbols.patternChars.length() + 1
/**
* boolean attributes
*/
public enum BooleanAttribute {
/**
* indicates whitespace tolerance. Also included is trailing dot tolerance.
*/
PARSE_ALLOW_WHITESPACE,
/**
* indicates tolerance of numeric data when String data may be assumed.
* e.g. YEAR_NAME_FIELD
*/
PARSE_ALLOW_NUMERIC,
/**
* indicates tolerance of pattern mismatch between input data and specified format pattern.
* e.g. accepting "September" for a month pattern of MMM ("Sep")
*/
PARSE_MULTIPLE_PATTERNS_FOR_MATCH,
/**
* indicates tolerance of a partial literal match
* e.g. accepting "--mon-02-march-2011" for a pattern of "'--: 'EEE-WW-MMMM-yyyy"
*/
PARSE_PARTIAL_LITERAL_MATCH,
/**
* alias of PARSE_PARTIAL_LITERAL_MATCH
* @deprecated
* @hide draft / provisional / internal are hidden on Android
*/
@Deprecated
PARSE_PARTIAL_MATCH
};
/**
* boolean attributes for this instance. Inclusion in this is indicates a true condition.
*/
private EnumSetDateFormat
present on the stream.
* Possible values are:
* DateFormat
, the most recent format
* (corresponding to the highest allowable serialVersionOnStream
)
* is always written.
*
* @serial
*/
private int serialVersionOnStream = currentSerialVersion;
// Proclaim serial compatibility with 1.1 FCS
private static final long serialVersionUID = 7218322306649953788L;
/**
* Formats a time object into a time string. Examples of time objects
* are a time value expressed in milliseconds and a Date object.
* @param obj must be a Number or a Date or a Calendar.
* @param toAppendTo the string buffer for the returning time string.
* @return the formatted time string.
* @param fieldPosition keeps track of the position of the field
* within the returned string.
* On input: an alignment field,
* if desired. On output: the offsets of the alignment field. For
* example, given a time text "1996.07.10 AD at 15:08:56 PDT",
* if the given fieldPosition is DateFormat.YEAR_FIELD, the
* begin index and end index of fieldPosition will be set to
* 0 and 4, respectively.
* Notice that if the same time field appears
* more than once in a pattern, the fieldPosition will be set for the first
* occurrence of that time field. For instance, formatting a Date to
* the time string "1 PM PDT (Pacific Daylight Time)" using the pattern
* "h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,
* the begin index and end index of fieldPosition will be set to
* 5 and 8, respectively, for the first occurrence of the timezone
* pattern character 'z'.
* @see java.text.Format
*/
@Override
public final StringBuffer format(Object obj, StringBuffer toAppendTo,
FieldPosition fieldPosition)
{
if (obj instanceof Calendar)
return format( (Calendar)obj, toAppendTo, fieldPosition );
else if (obj instanceof Date)
return format( (Date)obj, toAppendTo, fieldPosition );
else if (obj instanceof Number)
return format( new Date(((Number)obj).longValue()),
toAppendTo, fieldPosition );
else
throw new IllegalArgumentException("Cannot format given Object (" +
obj.getClass().getName() + ") as a Date");
}
/**
* Formats a date into a date/time string.
* @param cal a Calendar set to the date and time to be formatted
* into a date/time string. When the calendar type is different from
* the internal calendar held by this DateFormat instance, the date
* and the time zone will be inherited from the input calendar, but
* other calendar field values will be calculated by the internal calendar.
* @param toAppendTo the string buffer for the returning date/time string.
* @param fieldPosition keeps track of the position of the field
* within the returned string.
* On input: an alignment field,
* if desired. On output: the offsets of the alignment field. For
* example, given a time text "1996.07.10 AD at 15:08:56 PDT",
* if the given fieldPosition is DateFormat.YEAR_FIELD, the
* begin index and end index of fieldPosition will be set to
* 0 and 4, respectively.
* Notice that if the same time field appears
* more than once in a pattern, the fieldPosition will be set for the first
* occurrence of that time field. For instance, formatting a Date to
* the time string "1 PM PDT (Pacific Daylight Time)" using the pattern
* "h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,
* the begin index and end index of fieldPosition will be set to
* 5 and 8, respectively, for the first occurrence of the timezone
* pattern character 'z'.
* @return the formatted date/time string.
*/
public abstract StringBuffer format(Calendar cal, StringBuffer toAppendTo,
FieldPosition fieldPosition);
/**
* Formats a Date into a date/time string.
* @param date a Date to be formatted into a date/time string.
* @param toAppendTo the string buffer for the returning date/time string.
* @param fieldPosition keeps track of the position of the field
* within the returned string.
* On input: an alignment field,
* if desired. On output: the offsets of the alignment field. For
* example, given a time text "1996.07.10 AD at 15:08:56 PDT",
* if the given fieldPosition is DateFormat.YEAR_FIELD, the
* begin index and end index of fieldPosition will be set to
* 0 and 4, respectively.
* Notice that if the same time field appears
* more than once in a pattern, the fieldPosition will be set for the first
* occurrence of that time field. For instance, formatting a Date to
* the time string "1 PM PDT (Pacific Daylight Time)" using the pattern
* "h a z (zzzz)" and the alignment field DateFormat.TIMEZONE_FIELD,
* the begin index and end index of fieldPosition will be set to
* 5 and 8, respectively, for the first occurrence of the timezone
* pattern character 'z'.
* @return the formatted date/time string.
*/
public StringBuffer format(Date date, StringBuffer toAppendTo,
FieldPosition fieldPosition) {
// Use our Calendar object
calendar.setTime(date);
return format(calendar, toAppendTo, fieldPosition);
}
/**
* Formats a Date into a date/time string.
* @param date the time value to be formatted into a time string.
* @return the formatted time string.
*/
public final String format(Date date)
{
return format(date, new StringBuffer(64),new FieldPosition(0)).toString();
}
/**
* Parses a date/time string. For example, a time text "07/10/96 4:5 PM, PDT"
* will be parsed into a Date that is equivalent to Date(837039928046).
* Parsing begins at the beginning of the string and proceeds as far as
* possible. Assuming no parse errors were encountered, this function
* doesn't return any information about how much of the string was consumed
* by the parsing. If you need that information, use a version of
* parse() that takes a ParsePosition.
*
* By default, parsing is lenient: If the input is not in the form used * by this object's format method but can still be parsed as a date, then * the parse succeeds. Clients may insist on strict adherence to the * format by calling setLenient(false). * *
Note that the normal date formats associated with some calendars - such * as the Chinese lunar calendar - do not specify enough fields to enable * dates to be parsed unambiguously. In the case of the Chinese lunar * calendar, while the year within the current 60-year cycle is specified, * the number of such cycles since the start date of the calendar (in the * ERA field of the Calendar object) is not normally part of the format, * and parsing may assume the wrong era. For cases such as this it is * recommended that clients parse using the parse method that takes a Calendar * with the Calendar passed in set to the current date, or to a date * within the era/cycle that should be assumed if absent in the format. * * @param text The date/time string to be parsed * * @return A Date, or null if the input could not be parsed * * @exception ParseException If the given string cannot be parsed as a date. * * @see #parse(String, ParsePosition) */ public Date parse(String text) throws ParseException { ParsePosition pos = new ParsePosition(0); Date result = parse(text, pos); if (pos.getIndex() == 0) // ICU4J throw new ParseException("Unparseable date: \"" + text + "\"" , pos.getErrorIndex()); // ICU4J return result; } /** * Parses a date/time string according to the given parse position. * For example, a time text "07/10/96 4:5 PM, PDT" will be parsed * into a Calendar that is equivalent to Date(837039928046). Before * calling this method the caller should initialize the calendar * in one of two ways (unless existing field information is to be kept): * (1) clear the calendar, or (2) set the calendar to the current date * (or to any date whose fields should be used to supply values that * are missing in the parsed date). For example, Chinese calendar dates * do not normally provide an era/cycle; in this case the calendar that * is passed in should be set to a date within the era that should be * assumed, normally the current era. * *
By default, parsing is lenient: If the input is not in the form used * by this object's format method but can still be parsed as a date, then * the parse succeeds. Clients may insist on strict adherence to the * format by calling setLenient(false). * * @see #setLenient(boolean) * * @param text The date/time string to be parsed * * @param cal The calendar set on input to the date and time to be used * for missing values in the date/time string being parsed, * and set on output to the parsed date/time. In general, this * should be initialized before calling this method - either * cleared or set to the current date, depending on desired * behavior. If this parse fails, the calendar may still * have been modified. When the calendar type is different * from the internal calendar held by this DateFormat * instance, calendar field values will be parsed based * on the internal calendar initialized with the time and * the time zone taken from this calendar, then the * parse result (time in milliseconds and time zone) will * be set back to this calendar. * * @param pos On input, the position at which to start parsing; on * output, the position at which parsing terminated, or the * start position if the parse failed. */ public abstract void parse(String text, Calendar cal, ParsePosition pos); /** * Parses a date/time string according to the given parse position. For * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date * that is equivalent to Date(837039928046). * *
By default, parsing is lenient: If the input is not in the form used * by this object's format method but can still be parsed as a date, then * the parse succeeds. Clients may insist on strict adherence to the * format by calling setLenient(false). * *
Note that the normal date formats associated with some calendars - such
* as the Chinese lunar calendar - do not specify enough fields to enable
* dates to be parsed unambiguously. In the case of the Chinese lunar
* calendar, while the year within the current 60-year cycle is specified,
* the number of such cycles since the start date of the calendar (in the
* ERA field of the Calendar object) is not normally part of the format,
* and parsing may assume the wrong era. For cases such as this it is
* recommended that clients parse using the parse method that takes a Calendar
* with the Calendar passed in set to the current date, or to a date
* within the era/cycle that should be assumed if absent in the format.
*
* @see #setLenient(boolean)
*
* @param text The date/time string to be parsed
*
* @param pos On input, the position at which to start parsing; on
* output, the position at which parsing terminated, or the
* start position if the parse failed.
*
* @return A Date, or null if the input could not be parsed
*/
public Date parse(String text, ParsePosition pos) {
Date result = null;
int start = pos.getIndex();
TimeZone tzsav = calendar.getTimeZone();
calendar.clear();
parse(text, calendar, pos);
if (pos.getIndex() != start) {
try {
result = calendar.getTime();
} catch (IllegalArgumentException e) {
// This occurs if the calendar is non-lenient and there is
// an out-of-range field. We don't know which field was
// illegal so we set the error index to the start.
pos.setIndex(start);
pos.setErrorIndex(start);
}
}
// Restore TimeZone
calendar.setTimeZone(tzsav);
return result;
}
/**
* Parses a date/time string into an Object. This convenience method simply
* calls parse(String, ParsePosition).
*
* @see #parse(String, ParsePosition)
*/
@Override
public Object parseObject (String source, ParsePosition pos)
{
return parse(source, pos);
}
/**
* [icu] Constant for empty style pattern.
*/
public static final int NONE = -1;
/**
* Constant for full style pattern.
*/
public static final int FULL = 0;
/**
* Constant for long style pattern.
*/
public static final int LONG = 1;
/**
* Constant for medium style pattern.
*/
public static final int MEDIUM = 2;
/**
* Constant for short style pattern.
*/
public static final int SHORT = 3;
/**
* Constant for default style pattern. Its value is MEDIUM.
*/
public static final int DEFAULT = MEDIUM;
/**
* [icu] Constant for relative style mask.
*/
public static final int RELATIVE = (1 << 7);
/**
* [icu] Constant for relative full style pattern.
*/
public static final int RELATIVE_FULL = RELATIVE | FULL;
/**
* [icu] Constant for relative style pattern.
*/
public static final int RELATIVE_LONG = RELATIVE | LONG;
/**
* [icu] Constant for relative style pattern.
*/
public static final int RELATIVE_MEDIUM = RELATIVE | MEDIUM;
/**
* [icu] Constant for relative style pattern.
*/
public static final int RELATIVE_SHORT = RELATIVE | SHORT;
/**
* [icu] Constant for relative default style pattern.
*/
public static final int RELATIVE_DEFAULT = RELATIVE | DEFAULT;
/*
* DATES
*/
/**
* [icu] Constant for date skeleton with year.
*/
public static final String YEAR = "y";
/**
* [icu] Constant for date skeleton with quarter.
*/
public static final String QUARTER = "QQQQ";
/**
* [icu] Constant for date skeleton with abbreviated quarter.
*/
public static final String ABBR_QUARTER = "QQQ";
/**
* [icu] Constant for date skeleton with year and quarter.
*/
public static final String YEAR_QUARTER = "yQQQQ";
/**
* [icu] Constant for date skeleton with year and abbreviated quarter.
*/
public static final String YEAR_ABBR_QUARTER = "yQQQ";
/**
* [icu] Constant for date skeleton with month.
*/
public static final String MONTH = "MMMM";
/**
* [icu] Constant for date skeleton with abbreviated month.
*/
public static final String ABBR_MONTH = "MMM";
/**
* [icu] Constant for date skeleton with numeric month.
*/
public static final String NUM_MONTH = "M";
/**
* [icu] Constant for date skeleton with year and month.
*/
public static final String YEAR_MONTH = "yMMMM";
/**
* [icu] Constant for date skeleton with year and abbreviated month.
*/
public static final String YEAR_ABBR_MONTH = "yMMM";
/**
* [icu] Constant for date skeleton with year and numeric month.
*/
public static final String YEAR_NUM_MONTH = "yM";
/**
* [icu] Constant for date skeleton with day.
*/
public static final String DAY = "d";
/**
* [icu] Constant for date skeleton with year, month, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_MONTH_DAY = "yMMMMd";
/**
* [icu] Constant for date skeleton with year, abbreviated month, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_ABBR_MONTH_DAY = "yMMMd";
/**
* [icu] Constant for date skeleton with year, numeric month, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_NUM_MONTH_DAY = "yMd";
/**
* [icu] Constant for date skeleton with weekday.
*/
public static final String WEEKDAY = "EEEE";
/**
* [icu] Constant for date skeleton with abbreviated weekday.
*/
public static final String ABBR_WEEKDAY = "E";
/**
* [icu] Constant for date skeleton with year, month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_MONTH_WEEKDAY_DAY = "yMMMMEEEEd";
/**
* [icu] Constant for date skeleton with year, abbreviated month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_ABBR_MONTH_WEEKDAY_DAY = "yMMMEd";
/**
* [icu] Constant for date skeleton with year, numeric month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String YEAR_NUM_MONTH_WEEKDAY_DAY = "yMEd";
/**
* [icu] Constant for date skeleton with long month and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String MONTH_DAY = "MMMMd";
/**
* [icu] Constant for date skeleton with abbreviated month and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String ABBR_MONTH_DAY = "MMMd";
/**
* [icu] Constant for date skeleton with numeric month and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String NUM_MONTH_DAY = "Md";
/**
* [icu] Constant for date skeleton with month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String MONTH_WEEKDAY_DAY = "MMMMEEEEd";
/**
* [icu] Constant for date skeleton with abbreviated month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String ABBR_MONTH_WEEKDAY_DAY = "MMMEd";
/**
* [icu] Constant for date skeleton with numeric month, weekday, and day.
* Used in combinations date + time, date + time + zone, or time + zone.
*/
public static final String NUM_MONTH_WEEKDAY_DAY = "MEd";
/**
* List of all of the date skeleton constants for iteration.
* Note that this is fragile; be sure to add any values that are added above.
* @deprecated This API is ICU internal only.
* @hide original deprecated declaration
* @hide draft / provisional / internal are hidden on Android
*/
@Deprecated
public static final List
* @param cal The calendar system for which a date format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the date format is desired.
*/
static final public DateFormat getDateInstance(Calendar cal, int dateStyle, Locale locale)
{
return getDateTimeInstance(cal, dateStyle, -1, ULocale.forLocale(locale));
}
/**
* Creates a {@link DateFormat} object that can be used to format dates in
* the calendar system specified by
* @param cal The calendar system for which a date format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the date format is desired.
*/
static final public DateFormat getDateInstance(Calendar cal, int dateStyle, ULocale locale)
{
return getDateTimeInstance(cal, dateStyle, -1, locale);
}
/**
* Creates a {@link DateFormat} object that can be used to format times in
* the calendar system specified by
* @param cal The calendar system for which a date format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*/
static final public DateFormat getDateInstance(Calendar cal, int dateStyle) {
return getDateInstance(cal, dateStyle, ULocale.getDefault(Category.FORMAT));
}
/**
* Creates a {@link DateFormat} object that can be used to format times in
* the calendar system specified by There is no public constructor to this class, the only instances are the
* constants defined here.
*
*/
public static class Field extends Format.Field {
private static final long serialVersionUID = -3627456821000730829L;
// Max number of calendar fields
private static final int CAL_FIELD_COUNT;
// Table for mapping calendar field number to DateFormat.Field
private static final Field[] CAL_FIELDS;
// Map for resolving DateFormat.Field by name
private static final MapFORMAT
locale.
* @return a time formatter.
* @see Category#FORMAT
*/
public final static DateFormat getTimeInstance()
{
return get(-1, DEFAULT, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the time formatter with the given formatting style
* for the default FORMAT
locale.
* @param style the given formatting style. For example,
* SHORT for "h:mm a" in the US locale. Relative time styles are not currently
* supported, and behave just like the corresponding non-relative style.
* @return a time formatter.
* @see Category#FORMAT
*/
public final static DateFormat getTimeInstance(int style)
{
return get(-1, style, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the time formatter with the given formatting style
* for the given locale.
* @param style the given formatting style. For example,
* SHORT for "h:mm a" in the US locale. Relative time styles are not currently
* supported, and behave just like the corresponding non-relative style.
* @param aLocale the given locale.
* @return a time formatter.
*/
public final static DateFormat getTimeInstance(int style,
Locale aLocale)
{
return get(-1, style, ULocale.forLocale(aLocale), null);
}
/**
* Returns the time formatter with the given formatting style
* for the given locale.
* @param style the given formatting style. For example,
* SHORT for "h:mm a" in the US locale. Relative time styles are not currently
* supported, and behave just like the corresponding non-relative style.
* @param locale the given ulocale.
* @return a time formatter.
*/
public final static DateFormat getTimeInstance(int style,
ULocale locale)
{
return get(-1, style, locale, null);
}
/**
* Returns the date formatter with the default formatting style
* for the default FORMAT
locale.
* @return a date formatter.
* @see Category#FORMAT
*/
public final static DateFormat getDateInstance()
{
return get(DEFAULT, -1, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the date formatter with the given formatting style
* for the default FORMAT
locale.
* @param style the given formatting style. For example,
* SHORT for "M/d/yy" in the US locale. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @return a date formatter.
* @see Category#FORMAT
*/
public final static DateFormat getDateInstance(int style)
{
return get(style, -1, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the date formatter with the given formatting style
* for the given locale.
* @param style the given formatting style. For example,
* SHORT for "M/d/yy" in the US locale. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @param aLocale the given locale.
* @return a date formatter.
*/
public final static DateFormat getDateInstance(int style,
Locale aLocale)
{
return get(style, -1, ULocale.forLocale(aLocale), null);
}
/**
* Returns the date formatter with the given formatting style
* for the given locale.
* @param style the given formatting style. For example,
* SHORT for "M/d/yy" in the US locale. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @param locale the given ulocale.
* @return a date formatter.
*/
public final static DateFormat getDateInstance(int style,
ULocale locale)
{
return get(style, -1, locale, null);
}
/**
* Returns the date/time formatter with the default formatting style
* for the default FORMAT
locale.
* @return a date/time formatter.
* @see Category#FORMAT
*/
public final static DateFormat getDateTimeInstance()
{
return get(DEFAULT, DEFAULT, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the date/time formatter with the given date and time
* formatting styles for the default FORMAT
locale.
* @param dateStyle the given date formatting style. For example,
* SHORT for "M/d/yy" in the US locale. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @param timeStyle the given time formatting style. For example,
* SHORT for "h:mm a" in the US locale. Relative time styles are not currently
* supported, and behave just like the corresponding non-relative style.
* @return a date/time formatter.
* @see Category#FORMAT
*/
public final static DateFormat getDateTimeInstance(int dateStyle,
int timeStyle)
{
return get(dateStyle, timeStyle, ULocale.getDefault(Category.FORMAT), null);
}
/**
* Returns the date/time formatter with the given formatting styles
* for the given locale.
* @param dateStyle the given date formatting style. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @param timeStyle the given time formatting style. Relative time styles are not
* currently supported, and behave just like the corresponding non-relative style.
* @param aLocale the given locale.
* @return a date/time formatter.
*/
public final static DateFormat getDateTimeInstance(
int dateStyle, int timeStyle, Locale aLocale)
{
return get(dateStyle, timeStyle, ULocale.forLocale(aLocale), null);
}
/**
* Returns the date/time formatter with the given formatting styles
* for the given locale.
* @param dateStyle the given date formatting style. As currently implemented, relative date
* formatting only affects a limited range of calendar days before or after the
* current date, based on the CLDR <field type="day">/<relative> data: For example,
* in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, relative
* dates are formatted using the corresponding non-relative style.
* @param timeStyle the given time formatting style. Relative time styles are not
* currently supported, and behave just like the corresponding non-relative style.
* @param locale the given ulocale.
* @return a date/time formatter.
*/
public final static DateFormat getDateTimeInstance(
int dateStyle, int timeStyle, ULocale locale)
{
return get(dateStyle, timeStyle, locale, null);
}
/**
* Returns a default date/time formatter that uses the SHORT style for both the
* date and the time.
*/
public final static DateFormat getInstance() {
return getDateTimeInstance(SHORT, SHORT);
}
/**
* Returns the set of locales for which DateFormats are installed.
* @return the set of locales for which DateFormats are installed.
*/
public static Locale[] getAvailableLocales()
{
return ICUResourceBundle.getAvailableLocales();
}
/**
* [icu] Returns the set of locales for which DateFormats are installed.
* @return the set of locales for which DateFormats are installed.
* @hide draft / provisional / internal are hidden on Android
*/
public static ULocale[] getAvailableULocales()
{
return ICUResourceBundle.getAvailableULocales();
}
/**
* Sets the calendar to be used by this date format. Initially, the default
* calendar for the specified or default locale is used.
* @param newCalendar the new Calendar to be used by the date format
*/
public void setCalendar(Calendar newCalendar)
{
this.calendar = newCalendar;
}
/**
* Returns the calendar associated with this date/time formatter.
* @return the calendar associated with this date/time formatter.
*/
public Calendar getCalendar()
{
return calendar;
}
/**
* Sets the number formatter.
* @param newNumberFormat the given new NumberFormat.
*/
public void setNumberFormat(NumberFormat newNumberFormat)
{
numberFormat = (NumberFormat)newNumberFormat.clone();
fixNumberFormatForDates(numberFormat);
}
// no matter what the locale's default number format looked like, we want
// to modify it so that it doesn't use thousands separators, doesn't always
// show the decimal point, and recognizes integers only when parsing
static void fixNumberFormatForDates(NumberFormat nf) {
nf.setGroupingUsed(false);
if (nf instanceof DecimalFormat) {
((DecimalFormat)nf).setDecimalSeparatorAlwaysShown(false);
}
nf.setParseIntegerOnly(true);
nf.setMinimumFractionDigits(0);
}
/**
* Returns the number formatter which this date/time formatter uses to
* format and parse a time.
* @return the number formatter which this date/time formatter uses.
*/
public NumberFormat getNumberFormat()
{
return numberFormat;
}
/**
* Sets the time zone for the calendar of this DateFormat object.
* @param zone the given new time zone.
*/
public void setTimeZone(TimeZone zone)
{
calendar.setTimeZone(zone);
}
/**
* Returns the time zone.
* @return the time zone associated with the calendar of DateFormat.
*/
public TimeZone getTimeZone()
{
return calendar.getTimeZone();
}
/**
* Specifies whether date/time parsing is to be lenient. With
* lenient parsing, the parser may use heuristics to interpret inputs that
* do not precisely match this object's format. Without lenient parsing,
* inputs must match this object's format more closely.
*
* Note: ICU 53 introduced finer grained control of leniency (and added
* new control points) making the preferred method a combination of
* setCalendarLenient() & setBooleanAttribute() calls.
* This method supports prior functionality but may not support all
* future leniency control & behavior of DateFormat. For control of pre 53 leniency,
* Calendar and DateFormat whitespace & numeric tolerance, this method is safe to
* use. However, mixing leniency control via this method and modification of the
* newer attributes via setBooleanAttribute() may produce undesirable
* results.
*
* @param lenient True specifies date/time interpretation to be lenient.
* @see android.icu.util.Calendar#setLenient
* @see #setBooleanAttribute(BooleanAttribute, boolean)
* @see #setCalendarLenient(boolean)
*/
public void setLenient(boolean lenient)
{
calendar.setLenient(lenient);
setBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC, lenient);
setBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE, lenient);
}
/**
* Returns whether both date/time parsing in the encapsulated Calendar object and DateFormat whitespace &
* numeric processing is lenient.
*/
public boolean isLenient()
{
return calendar.isLenient()
&& getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_NUMERIC)
&& getBooleanAttribute(BooleanAttribute.PARSE_ALLOW_WHITESPACE);
}
/**
* Specifies whether date/time parsing in the encapsulated Calendar object should be lenient.
* With lenient parsing, the parser may use heuristics to interpret inputs that
* do not precisely match this object's format. Without lenient parsing,
* inputs must match this object's format more closely.
* @param lenient when true, Calendar parsing is lenient
* @see android.icu.util.Calendar#setLenient
*/
public void setCalendarLenient(boolean lenient)
{
calendar.setLenient(lenient);
}
/**
* Returns whether date/time parsing in the encapsulated Calendar object is lenient.
*/
public boolean isCalendarLenient()
{
return calendar.isLenient();
}
/**
* Sets a boolean attribute for this instance. Aspects of DateFormat leniency are controlled by
* boolean attributes.
*
* @see BooleanAttribute
*/
public DateFormat setBooleanAttribute(BooleanAttribute key, boolean value)
{
if(key.equals(DateFormat.BooleanAttribute.PARSE_PARTIAL_MATCH)) {
key = DateFormat.BooleanAttribute.PARSE_PARTIAL_LITERAL_MATCH;
}
if(value)
{
booleanAttributes.add(key);
}
else
{
booleanAttributes.remove(key);
}
return this;
}
/**
* Returns the current value for the specified BooleanAttribute for this instance
*
* if attribute is missing false is returned.
*
* @see BooleanAttribute
*/
public boolean getBooleanAttribute(BooleanAttribute key)
{
if(key == DateFormat.BooleanAttribute.PARSE_PARTIAL_MATCH) {
key = DateFormat.BooleanAttribute.PARSE_PARTIAL_LITERAL_MATCH;
}
return booleanAttributes.contains(key);
}
/**
* [icu] Set a particular DisplayContext value in the formatter,
* such as CAPITALIZATION_FOR_STANDALONE.
*
* @param context The DisplayContext value to set.
*/
public void setContext(DisplayContext context) {
if (context.type() == DisplayContext.Type.CAPITALIZATION) {
capitalizationSetting = context;
}
}
/**
* [icu] Get the formatter's DisplayContext value for the specified DisplayContext.Type,
* such as CAPITALIZATION.
*
* @param type the DisplayContext.Type whose value to return
* @return the current DisplayContext setting for the specified type
*/
public DisplayContext getContext(DisplayContext.Type type) {
return (type == DisplayContext.Type.CAPITALIZATION && capitalizationSetting != null)?
capitalizationSetting: DisplayContext.CAPITALIZATION_NONE;
}
/**
* Overrides hashCode.
*/
///CLOVER:OFF
// turn off code coverage since all subclasses override this
@Override
public int hashCode() {
return numberFormat.hashCode();
// just enough fields for a reasonable distribution
}
///CLOVER:ON
/**
* Overrides equals.
*/
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
DateFormat other = (DateFormat) obj;
return (((calendar==null && other.calendar==null) ||
(calendar!=null && other.calendar!=null && calendar.isEquivalentTo(other.calendar))) &&
((numberFormat==null && other.numberFormat==null) ||
(numberFormat!=null && other.numberFormat!=null && numberFormat.equals(other.numberFormat))) &&
capitalizationSetting == other.capitalizationSetting);
}
/**
* Overrides clone.
*/
@Override
public Object clone()
{
DateFormat other = (DateFormat) super.clone();
other.calendar = (Calendar) calendar.clone();
if (numberFormat != null) {
other.numberFormat = (NumberFormat) numberFormat.clone();
}
return other;
}
/**
* Creates a DateFormat with the given time and/or date style in the given
* locale.
* @param dateStyle a value from 0 to 3 indicating the time format,
* or -1 to indicate no date
* @param timeStyle a value from 0 to 3 indicating the time format,
* or -1 to indicate no time
* @param loc the locale for the format
* @param cal the calendar to be used, or null
*/
private static DateFormat get(int dateStyle, int timeStyle, ULocale loc, Calendar cal) {
if((timeStyle != DateFormat.NONE && (timeStyle & RELATIVE)>0) ||
(dateStyle != DateFormat.NONE && (dateStyle & RELATIVE)>0)) {
RelativeDateFormat r = new RelativeDateFormat(timeStyle, dateStyle /* offset? */, loc, cal);
return r;
}
if (timeStyle < DateFormat.NONE || timeStyle > DateFormat.SHORT) {
throw new IllegalArgumentException("Illegal time style " + timeStyle);
}
if (dateStyle < DateFormat.NONE || dateStyle > DateFormat.SHORT) {
throw new IllegalArgumentException("Illegal date style " + dateStyle);
}
if (cal == null) {
cal = Calendar.getInstance(loc);
}
try {
DateFormat result = cal.getDateTimeFormat(dateStyle, timeStyle, loc);
result.setLocale(cal.getLocale(ULocale.VALID_LOCALE),
cal.getLocale(ULocale.ACTUAL_LOCALE));
return result;
} catch (MissingResourceException e) {
///CLOVER:OFF
// coverage requires separate run with no data, so skip
return new SimpleDateFormat("M/d/yy h:mm a");
///CLOVER:ON
}
}
/**
* First, read in the default serializable data.
*
* Then, if serialVersionOnStream
is less than 1, indicating that
* the stream was written by a pre-ICU-53 version,
* set capitalizationSetting to a default value.
* Finally, set serialVersionOnStream back to the maximum allowed value so that
* default serialization will work properly if this object is streamed out again.
*/
private void readObject(ObjectInputStream stream)
throws IOException, ClassNotFoundException
{
stream.defaultReadObject();
if (serialVersionOnStream < 1) {
// Didn't have capitalizationSetting, set it to default
capitalizationSetting = DisplayContext.CAPITALIZATION_NONE;
}
// if deserialized from a release that didn't have booleanAttributes, add them all
if(booleanAttributes == null) {
booleanAttributes = EnumSet.allOf(BooleanAttribute.class);
}
serialVersionOnStream = currentSerialVersion;
}
/**
* Creates a new date format.
*/
protected DateFormat() {}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//-------------------------------------------------------------------------
// Public static interface for creating custom DateFormats for different
// types of Calendars.
//-------------------------------------------------------------------------
/**
* Creates a {@link DateFormat} object that can be used to format dates in
* the calendar system specified by cal
.
* cal
.
* cal
.
* @param cal The calendar system for which a time format is desired.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the time format is desired.
*
* @see DateFormat#getTimeInstance
*/
static final public DateFormat getTimeInstance(Calendar cal, int timeStyle, Locale locale)
{
return getDateTimeInstance(cal, -1, timeStyle, ULocale.forLocale(locale));
}
/**
* Creates a {@link DateFormat} object that can be used to format times in
* the calendar system specified by cal
.
* @param cal The calendar system for which a time format is desired.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the time format is desired.
*
* @see DateFormat#getTimeInstance
*/
static final public DateFormat getTimeInstance(Calendar cal, int timeStyle, ULocale locale)
{
return getDateTimeInstance(cal, -1, timeStyle, locale);
}
/**
* Creates a {@link DateFormat} object that can be used to format dates and times in
* the calendar system specified by cal
.
* @param cal The calendar system for which a date/time format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*
* @see DateFormat#getDateTimeInstance
*/
static final public DateFormat getDateTimeInstance(Calendar cal, int dateStyle,
int timeStyle, Locale locale)
{
return getDateTimeInstance(cal, dateStyle, timeStyle, ULocale.forLocale(locale));
}
/**
* Creates a {@link DateFormat} object that can be used to format dates and times in
* the calendar system specified by cal
.
* @param cal The calendar system for which a date/time format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*
* @see DateFormat#getDateTimeInstance
*/
static final public DateFormat getDateTimeInstance(Calendar cal, int dateStyle,
int timeStyle, ULocale locale)
{
if (cal == null) {
throw new IllegalArgumentException("Calendar must be supplied");
}
return get(dateStyle, timeStyle, locale, cal);
}
/**
* Returns a date/time formatter that uses the SHORT style
* for both the date and the time.
*
* @param cal The calendar system for which a date/time format is desired.
* @param locale The locale for which the date/time format is desired.
*/
static final public DateFormat getInstance(Calendar cal, Locale locale) {
return getDateTimeInstance(cal, SHORT, SHORT, ULocale.forLocale(locale));
}
/**
* Returns a date/time formatter that uses the SHORT style
* for both the date and the time.
*
* @param cal The calendar system for which a date/time format is desired.
* @param locale The locale for which the date/time format is desired.
*/
static final public DateFormat getInstance(Calendar cal, ULocale locale) {
return getDateTimeInstance(cal, SHORT, SHORT, locale);
}
/**
* Returns a default date/time formatter that uses the SHORT style for both the
* date and the time.
*
* @param cal The calendar system for which a date/time format is desired.
*/
static final public DateFormat getInstance(Calendar cal) {
return getInstance(cal, ULocale.getDefault(Category.FORMAT));
}
/**
* Creates a {@link DateFormat} object for the default locale that can be used
* to format dates in the calendar system specified by cal
.
* cal
.
* @param cal The calendar system for which a time format is desired.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @see DateFormat#getTimeInstance
*/
static final public DateFormat getTimeInstance(Calendar cal, int timeStyle) {
return getTimeInstance(cal, timeStyle, ULocale.getDefault(Category.FORMAT));
}
/**
* Creates a {@link DateFormat} object for the default locale that can be used to format
* dates and times in the calendar system specified by cal
.
* @param cal The calendar system for which a date/time format is desired.
*
* @param dateStyle The type of date format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @param timeStyle The type of time format desired. This can be
* {@link DateFormat#SHORT}, {@link DateFormat#MEDIUM},
* etc.
*
* @see DateFormat#getDateTimeInstance
*/
static final public DateFormat getDateTimeInstance(Calendar cal, int dateStyle, int timeStyle) {
return getDateTimeInstance(cal, dateStyle, timeStyle, ULocale.getDefault(Category.FORMAT));
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the default locale.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*/
public final static DateFormat getInstanceForSkeleton(String skeleton) {
return getPatternInstance(skeleton, ULocale.getDefault(Category.FORMAT));
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the given locale.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getInstanceForSkeleton(String skeleton, Locale locale) {
return getPatternInstance(skeleton, ULocale.forLocale(locale));
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the given locale.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getInstanceForSkeleton(String skeleton, ULocale locale) {
DateTimePatternGenerator generator = DateTimePatternGenerator.getInstance(locale);
final String bestPattern = generator.getBestPattern(skeleton);
return new SimpleDateFormat(bestPattern, locale);
}
/**
* [icu] Creates a {@link DateFormat} object that can be used to format dates and
* times in the calendar system specified by cal
.
*
* @param cal The calendar system for which a date/time format is desired.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be
* {@link DateFormat#ABBR_MONTH}, {@link DateFormat#MONTH_WEEKDAY_DAY},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getInstanceForSkeleton(Calendar cal, String skeleton, Locale locale) {
return getPatternInstance(cal, skeleton, ULocale.forLocale(locale));
}
/**
* [icu] Creates a {@link DateFormat} object that can be used to format dates and
* times in the calendar system specified by cal
.
*
* @param cal The calendar system for which a date/time format is desired.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be
* {@link DateFormat#ABBR_MONTH}, {@link DateFormat#MONTH_WEEKDAY_DAY},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getInstanceForSkeleton(
Calendar cal, String skeleton, ULocale locale) {
if (cal != null) {
locale = locale.setKeywordValue("calendar", cal.getType());
}
DateTimePatternGenerator generator = DateTimePatternGenerator.getInstance(locale);
final String bestPattern = generator.getBestPattern(skeleton);
SimpleDateFormat format = new SimpleDateFormat(bestPattern, locale);
format.setCalendar(cal);
return format;
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the default locale.
* The getInstanceForSkeleton methods are preferred over the getPatternInstance methods.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*/
public final static DateFormat getPatternInstance(String skeleton) {
return getInstanceForSkeleton(skeleton);
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the given locale.
* The getInstanceForSkeleton methods are preferred over the getPatternInstance methods.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getPatternInstance(String skeleton, Locale locale) {
return getInstanceForSkeleton(skeleton, locale);
}
/**
* [icu] Returns a {@link DateFormat} object that can be used to format dates and times in
* the given locale.
* The getInstanceForSkeleton methods are preferred over the getPatternInstance methods.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be {@link DateFormat#ABBR_MONTH},
* {@link DateFormat#MONTH_WEEKDAY_DAY}, etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getPatternInstance(String skeleton, ULocale locale) {
return getInstanceForSkeleton(skeleton, locale);
}
/**
* [icu] Creates a {@link DateFormat} object that can be used to format dates and
* times in the calendar system specified by cal
.
* The getInstanceForSkeleton methods are preferred over the getPatternInstance methods.
*
* @param cal The calendar system for which a date/time format is desired.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be
* {@link DateFormat#ABBR_MONTH}, {@link DateFormat#MONTH_WEEKDAY_DAY},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getPatternInstance(Calendar cal, String skeleton, Locale locale) {
return getInstanceForSkeleton(cal, skeleton, locale);
}
/**
* [icu] Creates a {@link DateFormat} object that can be used to format dates and
* times in the calendar system specified by cal
.
* The getInstanceForSkeleton methods are preferred over the getPatternInstance methods.
*
* @param cal The calendar system for which a date/time format is desired.
*
* @param skeleton The skeleton that selects the fields to be formatted. (Uses the
* {@link DateTimePatternGenerator}.) This can be
* {@link DateFormat#ABBR_MONTH}, {@link DateFormat#MONTH_WEEKDAY_DAY},
* etc.
*
* @param locale The locale for which the date/time format is desired.
*/
public final static DateFormat getPatternInstance(
Calendar cal, String skeleton, ULocale locale) {
return getInstanceForSkeleton(cal, skeleton, locale);
}
/**
* The instances of this inner class are used as attribute keys and values
* in AttributedCharacterIterator that
* DateFormat.formatToCharacterIterator() method returns.
*
* DateFormat.Field
with the given name and
* the Calendar
field which this attribute represents. Use -1 for
* calendarField
if this field does not have a corresponding
* Calendar
field.
*
* @param name Name of the attribute
* @param calendarField Calendar
field constant
*/
protected Field(String name, int calendarField) {
super(name);
this.calendarField = calendarField;
if (this.getClass() == DateFormat.Field.class) {
FIELD_NAME_MAP.put(name, this);
if (calendarField >= 0 && calendarField < CAL_FIELD_COUNT) {
CAL_FIELDS[calendarField] = this;
}
}
}
/**
* Returns the Field
constant that corresponds to the
* Calendar
field calendarField
. If there is no
* corresponding Field
is available, null is returned.
*
* @param calendarField Calendar
field constant
* @return Field
associated with the calendarField
,
* or null if no associated Field
is available.
* @throws IllegalArgumentException if calendarField
is not
* a valid Calendar
field constant.
*/
public static DateFormat.Field ofCalendarField(int calendarField) {
if (calendarField < 0 || calendarField >= CAL_FIELD_COUNT) {
throw new IllegalArgumentException("Calendar field number is out of range");
}
return CAL_FIELDS[calendarField];
}
/**
* Returns the Calendar
field associated with this attribute.
* If there is no corresponding Calendar
available, this will
* return -1.
*
* @return Calendar
constant for this attribute.
*/
public int getCalendarField() {
return calendarField;
}
/**
* Resolves instances being deserialized to the predefined constants.
*
* @throws InvalidObjectException if the constant could not be resolved.
*/
@Override
protected Object readResolve() throws InvalidObjectException {
///CLOVER:OFF
if (this.getClass() != DateFormat.Field.class) {
throw new InvalidObjectException(
"A subclass of DateFormat.Field must implement readResolve.");
}
///CLOVER:ON
Object o = FIELD_NAME_MAP.get(this.getName());
///CLOVER:OFF
if (o == null) {
throw new InvalidObjectException("Unknown attribute name.");
}
///CLOVER:ON
return o;
}
}
}