Example usage for Java java.text DateFormatSymbols fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
String[] | getAmPmStrings() Gets ampm strings. |
String[] | getEras() Gets era strings. |
DateFormatSymbols | getInstance() Gets the DateFormatSymbols instance for the default locale. |
DateFormatSymbols | getInstance(Locale locale) Gets the DateFormatSymbols instance for the specified locale. |
String | getLocalPatternChars() 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. |
void | setEras(String[] newEras) Sets era strings. |
void | setLocalPatternChars(String newLocalPatternChars) Sets localized date-time pattern characters. |
void | setMonths(String[] newMonths) Sets month strings. |
void | setShortMonths(String[] newShortMonths) Sets short month strings. |
void | setShortWeekdays(String[] newShortWeekdays) Sets short weekday strings. |
void | setWeekdays(String[] newWeekdays) Sets weekday strings. |