Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Equivalent of following methods in Joda-Time

DateFormatSymbols #getMonths()

/**
 * Gets month strings. For example: "January", "February", etc.
 * @return the month strings.
 */
public String[] getMonths()
share|improve this question

1 Answer

up vote 2 down vote accepted

Joda actually provides a method to access this data:DateTimeUtils.getDateFormatSymbols() in Joda 2.0. I don't believe Joda is trying to replace that method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.