Lines Matching defs: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.
77 * These are modeled using {@code TemporalField} with the number held using
155 * Returns an adjusted object of the same type as this object with the adjustment made.
168 * date = date.with(Month.JULY); // most key classes implement TemporalAdjuster
169 * date = date.with(lastDayOfMonth()); // static import from Adjusters
170 * date = date.with(next(WEDNESDAY)); // static import from Adjusters and DayOfWeek
185 * @return an object of the same type with the specified adjustment made, not null
189 default Temporal with(TemporalAdjuster adjuster) {
194 * Returns an object of the same type as this object with the specified field altered.
196 * This returns a new object based on this one with the value for the specified field changed.
220 * @return an object of the same type with the specified field set, not null
225 Temporal with(TemporalField field, long newValue);
229 * Returns an object of the same type as this object with an amount added.
257 * @return an object of the same type with the specified adjustment made, not null
266 * Returns an object of the same type as this object with the specified period added.
268 * This method returns a new object based on this one with the specified period added.
292 * @return an object of the same type with the specified period added, not null
301 * Returns an object of the same type as this object with an amount subtracted.
329 * @return an object of the same type with the specified adjustment made, not null
338 * Returns an object of the same type as this object with the specified period subtracted.
340 * This method returns a new object based on this one with the specified period subtracted.
364 * @return an object of the same type with the specified period subtracted, not null