Java java.text DateFormatSymbols fields, constructors, methods, implement or subclass

Example usage for Java java.text DateFormatSymbols fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.text DateFormatSymbols.

The text is from its open source code.

Constructor

DateFormatSymbols()
Construct a DateFormatSymbols object by loading format data from resources for the default java.util.Locale.Category#FORMAT FORMAT locale.
DateFormatSymbols(Locale locale)
Construct a DateFormatSymbols object by loading format data from resources for the given locale.
DateFormatSymbols(boolean flag)
Constructs an uninitialized DateFormatSymbols.

Method

String[]getAmPmStrings()
Gets ampm strings.
String[]getEras()
Gets era strings.
DateFormatSymbolsgetInstance()
Gets the DateFormatSymbols instance for the default locale.
DateFormatSymbolsgetInstance(Locale locale)
Gets the DateFormatSymbols instance for the specified locale.
StringgetLocalPatternChars()
Gets localized date-time pattern characters.
String[]getMonths()
Gets month strings.
String[]getShortMonths()
Gets short month strings.
String[]getShortWeekdays()
Gets short weekday strings.
String[]getWeekdays()
Gets weekday strings.
voidsetEras(String[] newEras)
Sets era strings.
voidsetLocalPatternChars(String newLocalPatternChars)
Sets localized date-time pattern characters.
voidsetMonths(String[] newMonths)
Sets month strings.
voidsetShortMonths(String[] newShortMonths)
Sets short month strings.
voidsetShortWeekdays(String[] newShortWeekdays)
Sets short weekday strings.
voidsetWeekdays(String[] newWeekdays)
Sets weekday strings.