Lines Matching refs:with

18  * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
109 * The singleton instance for the month of January with 31 days.
114 * The singleton instance for the month of February with 28 days, or 29 in a leap year.
119 * The singleton instance for the month of March with 31 days.
124 * The singleton instance for the month of April with 30 days.
129 * The singleton instance for the month of May with 31 days.
134 * The singleton instance for the month of June with 30 days.
139 * The singleton instance for the month of July with 31 days.
144 * The singleton instance for the month of August with 31 days.
149 * The singleton instance for the month of September with 30 days.
154 * The singleton instance for the month of October with 31 days.
159 * The singleton instance for the month of November with 30 days.
164 * The singleton instance for the month of December with 31 days.
576 * with the month-of-year changed to be the same as this.
578 * The adjustment is equivalent to using {@link Temporal#with(TemporalField, long)}
584 * {@link Temporal#with(TemporalAdjuster)}:
588 * temporal = temporal.with(thisMonth);
593 * dateInMay.with(JANUARY); // four months earlier
594 * dateInMay.with(APRIL); // one months earlier
595 * dateInMay.with(MAY); // same date
596 * dateInMay.with(JUNE); // one month later
597 * dateInMay.with(DECEMBER); // seven months later
612 return temporal.with(MONTH_OF_YEAR, getValue());