DateFormat (Java SE 9 & JDK 9 ) (original) (raw)
- All Implemented Interfaces:
[Serializable](../../java/io/Serializable.html "interface in java.io")
,[Cloneable](../../java/lang/Cloneable.html "interface in java.lang")
Direct Known Subclasses:[SimpleDateFormat](../../java/text/SimpleDateFormat.html "class in java.text")
public abstract class DateFormat
extends FormatDateFormat
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
provides many class methods for obtaining default date/time formatters based on the default or a given locale and a number of formatting styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are provided in the method descriptions.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.
To format a date for the current Locale, use one of the static factory methods:
myString = DateFormat.getDateInstance().format(myDate);
If you are formatting multiple dates, 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 < myDate.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);
Use
getDateInstance
to get the normal date format for that country. There are other static factory methods available. UsegetTimeInstance
to get the time format for that country. UsegetDateTimeInstance
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:
- SHORT is completely numeric, such as
12.13.52
or3:30pm
- MEDIUM is longer, such as
Jan 12, 1952
- LONG is longer, such as
January 12, 1952
or3:30:32pm
- FULL is pretty completely specified, such as
Tuesday, April 12, 1952 AD or 3:30:42pm PST
.
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 theDateFormat
you get from the factory methods to a SimpleDateFormat. This will work for the majority of countries; just remember to put it in atry
block in case you encounter an unusual one.
You can also use forms of the parse and format methods withParsePosition and FieldPosition to allow you to - progressively parse through pieces of a string.
- align any particular field, or find out where it is for selection on the screen.
Synchronization
Date formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.
Implementation Requirements:
The format(Date, StringBuffer, FieldPosition) andparse(String, ParsePosition) methods may throw
NullPointerException
, if any of their parameter isnull
. The subclass may provide its own implementation and specification aboutNullPointerException
.The setCalendar(Calendar), setNumberFormat(NumberFormat) and setTimeZone(TimeZone) methods do not throw
NullPointerException
when their parameter isnull
, but any subsequent operations on the same instance may throwNullPointerException
.The getCalendar(), getNumberFormat() andgetTimeZone() methods may return
null
, if the respective values of this instance is set tonull
through the corresponding setter methods. For Example: getTimeZone() may returnnull
, if theTimeZone
value of this instance is set assetTimeZone(null).
Since:
1.1
See Also:
Format, NumberFormat, SimpleDateFormat, Calendar, GregorianCalendar, TimeZone, Serialized FormField Detail
* #### calendar protected [Calendar](../../java/util/Calendar.html "class in java.util") calendar The [Calendar](../../java/util/Calendar.html "class in java.util") instance used for calculating the date-time fields and the instant of time. This field is used for both formatting and parsing. Subclasses should initialize this field to a [Calendar](../../java/util/Calendar.html "class in java.util") appropriate for the [Locale](../../java/util/Locale.html "class in java.util") associated with this`DateFormat`. * #### numberFormat protected [NumberFormat](../../java/text/NumberFormat.html "class in java.text") numberFormat 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`. * #### ERA\_FIELD public static final int ERA_FIELD Useful constant for ERA field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.ERA%5FFIELD) * #### YEAR\_FIELD public static final int YEAR_FIELD Useful constant for YEAR field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.YEAR%5FFIELD) * #### MONTH\_FIELD public static final int MONTH_FIELD Useful constant for MONTH field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.MONTH%5FFIELD) * #### DATE\_FIELD public static final int DATE_FIELD Useful constant for DATE field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.DATE%5FFIELD) * #### HOUR\_OF\_DAY1\_FIELD public static final int HOUR_OF_DAY1_FIELD Useful constant for one-based HOUR\_OF\_DAY field alignment. Used in FieldPosition of date/time formatting. HOUR\_OF\_DAY1\_FIELD is used for the one-based 24-hour clock. For example, 23:59 + 01:00 results in 24:59. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.HOUR%5FOF%5FDAY1%5FFIELD) * #### HOUR\_OF\_DAY0\_FIELD public static final int HOUR_OF_DAY0_FIELD Useful constant for zero-based HOUR\_OF\_DAY field alignment. Used in FieldPosition of date/time formatting. HOUR\_OF\_DAY0\_FIELD is used for the zero-based 24-hour clock. For example, 23:59 + 01:00 results in 00:59. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.HOUR%5FOF%5FDAY0%5FFIELD) * #### MINUTE\_FIELD public static final int MINUTE_FIELD Useful constant for MINUTE field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.MINUTE%5FFIELD) * #### SECOND\_FIELD public static final int SECOND_FIELD Useful constant for SECOND field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.SECOND%5FFIELD) * #### MILLISECOND\_FIELD public static final int MILLISECOND_FIELD Useful constant for MILLISECOND field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.MILLISECOND%5FFIELD) * #### DAY\_OF\_WEEK\_FIELD public static final int DAY_OF_WEEK_FIELD Useful constant for DAY\_OF\_WEEK field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.DAY%5FOF%5FWEEK%5FFIELD) * #### DAY\_OF\_YEAR\_FIELD public static final int DAY_OF_YEAR_FIELD Useful constant for DAY\_OF\_YEAR field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.DAY%5FOF%5FYEAR%5FFIELD) * #### DAY\_OF\_WEEK\_IN\_MONTH\_FIELD public static final int DAY_OF_WEEK_IN_MONTH_FIELD Useful constant for DAY\_OF\_WEEK\_IN\_MONTH field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.DAY%5FOF%5FWEEK%5FIN%5FMONTH%5FFIELD) * #### WEEK\_OF\_YEAR\_FIELD public static final int WEEK_OF_YEAR_FIELD Useful constant for WEEK\_OF\_YEAR field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.WEEK%5FOF%5FYEAR%5FFIELD) * #### WEEK\_OF\_MONTH\_FIELD public static final int WEEK_OF_MONTH_FIELD Useful constant for WEEK\_OF\_MONTH field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.WEEK%5FOF%5FMONTH%5FFIELD) * #### AM\_PM\_FIELD public static final int AM_PM_FIELD Useful constant for AM\_PM field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.AM%5FPM%5FFIELD) * #### HOUR1\_FIELD public static final int HOUR1_FIELD Useful constant for one-based HOUR field alignment. Used in FieldPosition of date/time formatting. HOUR1\_FIELD is used for the one-based 12-hour clock. For example, 11:30 PM + 1 hour results in 12:30 AM. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.HOUR1%5FFIELD) * #### HOUR0\_FIELD public static final int HOUR0_FIELD Useful constant for zero-based HOUR field alignment. Used in FieldPosition of date/time formatting. HOUR0\_FIELD is used for the zero-based 12-hour clock. For example, 11:30 PM + 1 hour results in 00:30 AM. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.HOUR0%5FFIELD) * #### TIMEZONE\_FIELD public static final int TIMEZONE_FIELD Useful constant for TIMEZONE field alignment. Used in FieldPosition of date/time formatting. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.TIMEZONE%5FFIELD) * #### FULL public static final int FULL Constant for full style pattern. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.FULL) * #### LONG public static final int LONG Constant for long style pattern. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.LONG) * #### MEDIUM public static final int MEDIUM Constant for medium style pattern. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.MEDIUM) * #### SHORT public static final int SHORT Constant for short style pattern. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.SHORT) * #### DEFAULT public static final int DEFAULT Constant for default style pattern. Its value is MEDIUM. See Also: [Constant Field Values](../../constant-values.html#java.text.DateFormat.DEFAULT)
Constructor Detail
* #### DateFormat protected DateFormat() Create a new date format.
Method Detail
* #### format public final [StringBuffer](../../java/lang/StringBuffer.html "class in java.lang") format([Object](../../java/lang/Object.html "class in java.lang") obj, [StringBuffer](../../java/lang/StringBuffer.html "class in java.lang") toAppendTo, [FieldPosition](../../java/text/FieldPosition.html "class in java.text") fieldPosition) Overrides Format. Formats a time object into a time string. Examples of time objects are a time value expressed in milliseconds and a Date object. Specified by: `[format](../../java/text/Format.html#format-java.lang.Object-java.lang.StringBuffer-java.text.FieldPosition-)` in class `[Format](../../java/text/Format.html "class in java.text")` Parameters: `obj` \- must be a Number or a Date. `toAppendTo` \- the string buffer for the returning time string. `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'. Returns: the string buffer passed in as toAppendTo, with formatted text appended. Throws: `[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")` \- if the `Format` cannot format the given `obj`. See Also: [Format](../../java/text/Format.html "class in java.text") * #### format public abstract [StringBuffer](../../java/lang/StringBuffer.html "class in java.lang") format([Date](../../java/util/Date.html "class in java.util") date, [StringBuffer](../../java/lang/StringBuffer.html "class in java.lang") toAppendTo, [FieldPosition](../../java/text/FieldPosition.html "class in java.text") fieldPosition) Formats a Date into a date/time string. Parameters: `date` \- a Date to be formatted into a date/time string. `toAppendTo` \- the string buffer for the returning date/time string. `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'. Returns: the string buffer passed in as toAppendTo, with formatted text appended. * #### format public final [String](../../java/lang/String.html "class in java.lang") format([Date](../../java/util/Date.html "class in java.util") date) Formats a Date into a date/time string. Parameters: `date` \- the time value to be formatted into a time string. Returns: the formatted time string. * #### parse public [Date](../../java/util/Date.html "class in java.util") parse([String](../../java/lang/String.html "class in java.lang") source) throws [ParseException](../../java/text/ParseException.html "class in java.text") Parses text from the beginning of the given string to produce a date. The method may not use the entire text of the given string. See the [parse(String, ParsePosition)](../../java/text/DateFormat.html#parse-java.lang.String-java.text.ParsePosition-) method for more information on date parsing. Parameters: `source` \- A `String` whose beginning should be parsed. Returns: A `Date` parsed from the string. Throws: `[ParseException](../../java/text/ParseException.html "class in java.text")` \- if the beginning of the specified string cannot be parsed. * #### parse public abstract [Date](../../java/util/Date.html "class in java.util") parse([String](../../java/lang/String.html "class in java.lang") source, [ParsePosition](../../java/text/ParsePosition.html "class in java.text") pos) Parse 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(837039900000L)`. 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)](../../java/text/DateFormat.html#setLenient-boolean-). This parsing operation uses the [calendar](../../java/text/DateFormat.html#calendar) to produce a `Date`. As a result, the `calendar`'s date-time fields and the `TimeZone` value may have been overwritten, depending on subclass implementations. Any ` TimeZone` value that has previously been set by a call to[setTimeZone](../../java/text/DateFormat.html#setTimeZone-java.util.TimeZone-) may need to be restored for further operations. Parameters: `source` \- The date/time string to be parsed `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. Returns: A `Date`, or `null` if the input could not be parsed * #### parseObject public [Object](../../java/lang/Object.html "class in java.lang") parseObject([String](../../java/lang/String.html "class in java.lang") source, [ParsePosition](../../java/text/ParsePosition.html "class in java.text") pos) Parses text from a string to produce a `Date`. The method attempts to parse text starting at the index given by`pos`. If parsing succeeds, then the index of `pos` is updated to the index after the last character used (parsing does not necessarily use all characters up to the end of the string), and the parsed date is returned. The updated `pos` can be used to indicate the starting point for the next call to this method. If an error occurs, then the index of `pos` is not changed, the error index of `pos` is set to the index of the character where the error occurred, and null is returned. See the [parse(String, ParsePosition)](../../java/text/DateFormat.html#parse-java.lang.String-java.text.ParsePosition-) method for more information on date parsing. Specified by: `[parseObject](../../java/text/Format.html#parseObject-java.lang.String-java.text.ParsePosition-)` in class `[Format](../../java/text/Format.html "class in java.text")` Parameters: `source` \- A `String`, part of which should be parsed. `pos` \- A `ParsePosition` object with index and error index information as described above. Returns: A `Date` parsed from the string. In case of error, returns null. Throws: `[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")` \- if `source` or `pos` is null. * #### getTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getTimeInstance() Returns: a time formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getTimeInstance(int style) Parameters: `style` \- the given formatting style. For example, SHORT for "h:mm a" in the US locale. Returns: a time formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getTimeInstance(int style, [Locale](../../java/util/Locale.html "class in java.util") aLocale) Gets the time formatter with the given formatting style for the given locale. Parameters: `style` \- the given formatting style. For example, SHORT for "h:mm a" in the US locale. `aLocale` \- the given locale. Returns: a time formatter. * #### getDateInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateInstance() Returns: a date formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getDateInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateInstance(int style) Parameters: `style` \- the given formatting style. For example, SHORT for "M/d/yy" in the US locale. Returns: a date formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getDateInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateInstance(int style, [Locale](../../java/util/Locale.html "class in java.util") aLocale) Gets the date formatter with the given formatting style for the given locale. Parameters: `style` \- the given formatting style. For example, SHORT for "M/d/yy" in the US locale. `aLocale` \- the given locale. Returns: a date formatter. * #### getDateTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateTimeInstance() Returns: a date/time formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getDateTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateTimeInstance(int dateStyle, int timeStyle) Parameters: `dateStyle` \- the given date formatting style. For example, SHORT for "M/d/yy" in the US locale. `timeStyle` \- the given time formatting style. For example, SHORT for "h:mm a" in the US locale. Returns: a date/time formatter. See Also: [Locale.getDefault(java.util.Locale.Category)](../../java/util/Locale.html#getDefault-java.util.Locale.Category-), [Locale.Category.FORMAT](../../java/util/Locale.Category.html#FORMAT) * #### getDateTimeInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getDateTimeInstance(int dateStyle, int timeStyle, [Locale](../../java/util/Locale.html "class in java.util") aLocale) Gets the date/time formatter with the given formatting styles for the given locale. Parameters: `dateStyle` \- the given date formatting style. `timeStyle` \- the given time formatting style. `aLocale` \- the given locale. Returns: a date/time formatter. * #### getInstance public static final [DateFormat](../../java/text/DateFormat.html "class in java.text") getInstance() Get a default date/time formatter that uses the SHORT style for both the date and the time. Returns: a date/time formatter * #### getAvailableLocales public static [Locale](../../java/util/Locale.html "class in java.util")[] getAvailableLocales() Returns an array of all locales for which the`get*Instance` methods of this class can return localized instances. The returned array represents the union of locales supported by the Java runtime and by installed[DateFormatProvider](../../java/text/spi/DateFormatProvider.html "class in java.text.spi") implementations. It must contain at least a `Locale` instance equal to[Locale.US](../../java/util/Locale.html#US). Returns: An array of locales for which localized`DateFormat` instances are available. * #### setCalendar public void setCalendar([Calendar](../../java/util/Calendar.html "class in java.util") newCalendar) Set the calendar to be used by this date format. Initially, the default calendar for the specified or default locale is used. Any [TimeZone](../../java/util/TimeZone.html "class in java.util") and [leniency](../../java/text/DateFormat.html#isLenient--) values that have previously been set are overwritten by `newCalendar`'s values. Parameters: `newCalendar` \- the new `Calendar` to be used by the date format * #### getCalendar public [Calendar](../../java/util/Calendar.html "class in java.util") getCalendar() Gets the calendar associated with this date/time formatter. Returns: the calendar associated with this date/time formatter. * #### setNumberFormat public void setNumberFormat([NumberFormat](../../java/text/NumberFormat.html "class in java.text") newNumberFormat) Allows you to set the number formatter. Parameters: `newNumberFormat` \- the given new NumberFormat. * #### getNumberFormat public [NumberFormat](../../java/text/NumberFormat.html "class in java.text") getNumberFormat() Gets the number formatter which this date/time formatter uses to format and parse a time. Returns: the number formatter which this date/time formatter uses. * #### setTimeZone public void setTimeZone([TimeZone](../../java/util/TimeZone.html "class in java.util") zone) Sets the time zone for the calendar of this `DateFormat` object. This method is equivalent to the following call. > ``` > > getCalendar().setTimeZone(zone) > > ``` The `TimeZone` set by this method is overwritten by a[setCalendar](../../java/text/DateFormat.html#setCalendar-java.util.Calendar-) call. The `TimeZone` set by this method may be overwritten as a result of a call to the parse method. Parameters: `zone` \- the given new time zone. * #### getTimeZone public [TimeZone](../../java/util/TimeZone.html "class in java.util") getTimeZone() Gets the time zone. This method is equivalent to the following call. > ``` > > getCalendar().getTimeZone() > > ``` Returns: the time zone associated with the calendar of DateFormat. * #### setLenient public void setLenient(boolean lenient) Specify whether or not 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. With strict parsing, inputs must match this object's format. This method is equivalent to the following call. > ``` > > getCalendar().setLenient(lenient) > > ``` This leniency value is overwritten by a call to [setCalendar()](../../java/text/DateFormat.html#setCalendar-java.util.Calendar-). Parameters: `lenient` \- when `true`, parsing is lenient See Also: [Calendar.setLenient(boolean)](../../java/util/Calendar.html#setLenient-boolean-) * #### isLenient public boolean isLenient() Tell whether date/time parsing is to be lenient. This method is equivalent to the following call. > ``` > > getCalendar().isLenient() > > ``` Returns: `true` if the [calendar](../../java/text/DateFormat.html#calendar) is lenient;`false` otherwise. See Also: [Calendar.isLenient()](../../java/util/Calendar.html#isLenient--) * #### hashCode public int hashCode() Overrides hashCode Overrides: `[hashCode](../../java/lang/Object.html#hashCode--)` in class `[Object](../../java/lang/Object.html "class in java.lang")` Returns: a hash code value for this object. See Also: [Object.equals(java.lang.Object)](../../java/lang/Object.html#equals-java.lang.Object-), [System.identityHashCode(java.lang.Object)](../../java/lang/System.html#identityHashCode-java.lang.Object-) * #### equals public boolean equals([Object](../../java/lang/Object.html "class in java.lang") obj) Overrides equals Overrides: `[equals](../../java/lang/Object.html#equals-java.lang.Object-)` in class `[Object](../../java/lang/Object.html "class in java.lang")` Parameters: `obj` \- the reference object with which to compare. Returns: `true` if this object is the same as the obj argument; `false` otherwise. See Also: [Object.hashCode()](../../java/lang/Object.html#hashCode--), [HashMap](../../java/util/HashMap.html "class in java.util") * #### clone public [Object](../../java/lang/Object.html "class in java.lang") clone() Overrides Cloneable Overrides: `[clone](../../java/text/Format.html#clone--)` in class `[Format](../../java/text/Format.html "class in java.text")` Returns: a clone of this instance. See Also: [Cloneable](../../java/lang/Cloneable.html "interface in java.lang")