Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Well, I know that it represents the day of month but my question is why? Why not Calendar.DAY used to represent it? Is it because of poor naming of variables or is there an underlying reason for that?

share|improve this question

closed as not a real question by dasblinkenlight, Anthony Grist, PermGenError, Karna, andyb Feb 11 at 13:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

There are also other variables:

  • DAY_OF_MONTH
  • DAY_OF_WEEK
  • DAY_OF_WEEK_IN_MONTH
  • DAY_OF_YEAR

And the Javadocs for DATE:

Field number for get and set indicating the day of the month. This is a synonym for DAY_OF_MONTH. The first day of the month has value 1.

My guess as to why DATE is a synonym is that DAY_OF_MONTH was the most common field used, so it was made easier to type with DATE.

Also, the definition of "date" is "The day of the month or year as specified by a number." (according to Google)

share|improve this answer
I know, my curiousity was why it has stayed as "DATE". – ogzd Feb 11 at 13:03

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