Field 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.MONTH);
3 int month = cal.get(Calendar.MONTH);
4 adjustedCal.set(Calendar.MONTH, cal.get(Calendar.MONTH));
5 Math.numberFormat(new Integer(c.get(Calendar.MONTH)+1), "00")+"/"+
6 c.set(Calendar.MONTH, 3);
7 cal.set(Calendar.MONTH, month);
8 calendar.set( Calendar.MONTH, month-1 );
9 _calendar.set(Calendar.MONTH, currentmonth);
10 unitMap.put("month", new Integer(Calendar.MONTH));
11 currentDate.set(Calendar.MONTH, n - 1);
12 int month = myCalendar.get(Calendar.MONTH);
13 m.setText(smonth[c.get(Calendar.MONTH)]);
14 int m = calendar.get(Calendar.MONTH)+1; // zero-based for months
15 + "." + nicedate( (cal.get(Calendar.MONTH)+1), 2)
16 _month = gregCal.get(Calendar.MONTH) + 1;
17 int month = cal.get(Calendar.MONTH);
18 monthCombo.setSelectedIndex(c.get(Calendar.MONTH));
19 cl.set(clEx.get(java.util.Calendar.YEAR), clEx.get(java.util.Calendar.MONTH), clEx.get(java.util.Calendar.DATE));
20 currentMonth = rightNow.get(Calendar.MONTH) + 1;
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.