DateFormatSymbols (Java SE 10 & JDK 10 )

    • Method Detail

      • getAvailableLocales

        public static Locale[] getAvailableLocales()

        Returns an array of all locales for which the getInstance methods of this class can return localized instances. The returned array represents the union of locales supported by the Java runtime and by installed DateFormatSymbolsProvider implementations. It must contain at least a Locale instance equal to Locale.US.

        Returns:
        An array of locales for which localized DateFormatSymbols instances are available.
        Since:
        1.6
      • getInstance

        public static final DateFormatSymbols getInstance​(Locale locale)

        Gets the DateFormatSymbols instance for the specified locale. This method provides access to DateFormatSymbols instances for locales supported by the Java runtime itself as well as for those supported by installed DateFormatSymbolsProvider implementations.

        Parameters:
        locale - the given locale.
        Returns:
        a DateFormatSymbols instance.
        Throws:
        NullPointerException - if locale is null
        Since:
        1.6
      • getEras

        public String[] getEras()

        Gets era strings. For example: "AD" and "BC".

        Returns:
        the era strings.
      • setEras

        public void setEras​(String[] newEras)

        Sets era strings. For example: "AD" and "BC".

        Parameters:
        newEras - the new era strings.
      • getMonths

        public String[] getMonths()

        Gets month strings. For example: "January", "February", etc.

        If the language requires different forms for formatting and stand-alone usages, this method returns month names in the formatting form. For example, the preferred month name for January in the Czech language is ledna in the formatting form, while it is leden in the stand-alone form. This method returns "ledna" in this case. Refer to the Calendar Elements in the Unicode Locale Data Markup Language (LDML) specification for more details.

        Returns:
        the month strings. Use Calendar.JANUARY, Calendar.FEBRUARY, etc. to index the result array.
      • setMonths

        public void setMonths​(String[] newMonths)

        Sets month strings. For example: "January", "February", etc.

        Parameters:
        newMonths - the new month strings. The array should be indexed by Calendar.JANUARY, Calendar.FEBRUARY, etc.
      • getShortMonths

        public String[] getShortMonths()

        Gets short month strings. For example: "Jan", "Feb", etc.

        If the language requires different forms for formatting and stand-alone usages, this method returns short month names in the formatting form. For example, the preferred abbreviation for January in the Catalan language is de gen. in the formatting form, while it is gen. in the stand-alone form. This method returns "de gen." in this case. Refer to the Calendar Elements in the Unicode Locale Data Markup Language (LDML) specification for more details.

        Returns:
        the short month strings. Use Calendar.JANUARY, Calendar.FEBRUARY, etc. to index the result array.
      • setShortMonths

        public void setShortMonths​(String[] newShortMonths)

        Sets short month strings. For example: "Jan", "Feb", etc.

        Parameters:
        newShortMonths - the new short month strings. The array should be indexed by Calendar.JANUARY, Calendar.FEBRUARY, etc.
      • getWeekdays

        public String[] getWeekdays()

        Gets weekday strings. For example: "Sunday", "Monday", etc.

        Returns:
        the weekday strings. Use Calendar.SUNDAY, Calendar.MONDAY, etc. to index the result array.
      • setWeekdays

        public void setWeekdays​(String[] newWeekdays)

        Sets weekday strings. For example: "Sunday", "Monday", etc.

        Parameters:
        newWeekdays - the new weekday strings. The array should be indexed by Calendar.SUNDAY, Calendar.MONDAY, etc.
      • getShortWeekdays

        public String[] getShortWeekdays()

        Gets short weekday strings. For example: "Sun", "Mon", etc.

        Returns:
        the short weekday strings. Use Calendar.SUNDAY, Calendar.MONDAY, etc. to index the result array.
      • setShortWeekdays

        public void setShortWeekdays​(String[] newShortWeekdays)

        Sets short weekday strings. For example: "Sun", "Mon", etc.

        Parameters:
        newShortWeekdays - the new short weekday strings. The array should be indexed by Calendar.SUNDAY, Calendar.MONDAY, etc.
      • getAmPmStrings

        public String[] getAmPmStrings()

        Gets ampm strings. For example: "AM" and "PM".

        Returns:
        the ampm strings.
      • setAmPmStrings

        public void setAmPmStrings​(String[] newAmpms)

        Sets ampm strings. For example: "AM" and "PM".

        Parameters:
        newAmpms - the new ampm strings.
      • getZoneStrings

        public String[][] getZoneStrings()

        Gets time zone strings. Use of this method is discouraged; use TimeZone.getDisplayName() instead.

        The value returned is a two-dimensional array of strings of size n by m, where m is at least 5. Each of the n rows is an entry containing the localized names for a single TimeZone. Each such row contains (with i ranging from 0..n-1):

        • zoneStrings[i][0] - time zone ID
        • zoneStrings[i][1] - long name of zone in standard time
        • zoneStrings[i][2] - short name of zone in standard time
        • zoneStrings[i][3] - long name of zone in daylight saving time
        • zoneStrings[i][4] - short name of zone in daylight saving time

        The zone ID is not localized; it's one of the valid IDs of the TimeZone class that are not custom IDs. All other entries are localized names. If a zone does not implement daylight saving time, the daylight saving time names should not be used.

        If setZoneStrings has been called on this DateFormatSymbols instance, then the strings provided by that call are returned. Otherwise, the returned array contains names provided by the Java runtime and by installed TimeZoneNameProvider implementations.

        Returns:
        the time zone strings.
        See Also:
        setZoneStrings(String[][])
      • setZoneStrings

        public void setZoneStrings​(String[][] newZoneStrings)

        Sets time zone strings. The argument must be a two-dimensional array of strings of size n by m, where m is at least 5. Each of the n rows is an entry containing the localized names for a single TimeZone. Each such row contains (with i ranging from 0..n-1):

        • zoneStrings[i][0] - time zone ID
        • zoneStrings[i][1] - long name of zone in standard time
        • zoneStrings[i][2] - short name of zone in standard time
        • zoneStrings[i][3] - long name of zone in daylight saving time
        • zoneStrings[i][4] - short name of zone in daylight saving time

        The zone ID is not localized; it's one of the valid IDs of the TimeZone class that are not custom IDs. All other entries are localized names.

        Parameters:
        newZoneStrings - the new time zone strings.
        Throws:
        IllegalArgumentException - if the length of any row in newZoneStrings is less than 5
        NullPointerException - if newZoneStrings is null
        See Also:
        getZoneStrings()
      • getLocalPatternChars

        public String getLocalPatternChars()

        Gets localized date-time pattern characters. For example: 'u', 't', etc.

        Returns:
        the localized date-time pattern characters.
      • setLocalPatternChars

        public void setLocalPatternChars​(String newLocalPatternChars)

        Sets localized date-time pattern characters. For example: 'u', 't', etc.

        Parameters:
        newLocalPatternChars - the new localized date-time pattern characters.
      • clone

        public Object clone()

        Overrides Cloneable

        Overrides:
        clone in class Object
        Returns:
        a clone of this instance.
        See Also:
        Cloneable
      • equals

        public boolean equals​(Object obj)

        Override equals

        Overrides:
        equals in class Object
        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(), HashMap