Field DAY_OF_MONTH
Field type: int
Member of: java.util.Calendar
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 return (ca.get(Calendar.DAY_OF_MONTH) == cb.get(Calendar.DAY_OF_MONTH)) && (ca.get(Calendar.MONTH) == cb.get(Calendar.MONTH)) && (ca.get(Calendar.YEAR) == cb.get(Calendar.YEAR));
2 return cal.get(Calendar.DAY_OF_MONTH);
3 int day = cal.get(Calendar.DAY_OF_MONTH);
4 calendar.set (Calendar.DAY_OF_MONTH, getDayOfMonth() + 1);
5 calendar.set (Calendar.DAY_OF_MONTH, getDayOfMonth() - 1);
6 c.add(Calendar.DAY_OF_MONTH, -daysAgo);
7 cal.add(Calendar.DAY_OF_MONTH, 1);
8 calendar.set( Calendar.DAY_OF_MONTH, date );
9 c.set(Calendar.DAY_OF_MONTH, 10);
10 _calendar.set(Calendar.DAY_OF_MONTH, currentday);
11 unitMap.put("day", new Integer(Calendar.DAY_OF_MONTH));
12 calendar.add(Calendar.DAY_OF_MONTH, days);
13 d.setText((new Integer(c.get(Calendar.DAY_OF_MONTH))).toString());
14 int d = calendar.get(Calendar.DAY_OF_MONTH);
15 int dayOfMonth = cal.get(Calendar.DAY_OF_MONTH);
16 dayCombo.setSelectedIndex(c.get(Calendar.DAY_OF_MONTH) - 1);
17 int day = cal.get (Calendar.DAY_OF_MONTH);
18 currentDay = rightNow.get(Calendar.DAY_OF_MONTH);
19 int nDays = dateTMP.getActualMaximum (GregorianCalendar.DAY_OF_MONTH);
20 gregCal.get(Calendar.MONTH), gregCal.get(Calendar.DAY_OF_MONTH),
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.