HomeSort by relevance Sort by last modified time
    Searched defs:adjustInto (Results 1 - 25 of 31) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAdjuster.java 80 * temporal = thisAdjuster.adjustInto(temporal);
121 * temporal = thisAdjuster.adjustInto(temporal);
150 Temporal adjustInto(Temporal temporal);
TemporalField.java 284 * temporal = thisField.adjustInto(temporal);
306 <R extends Temporal> R adjustInto(R temporal, long newValue);
JulianFields.java 108 * When 'JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.
109 * 'JULIAN_DAY.adjustInto()' and 'JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects that
154 * When 'MODIFIED_JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.
155 * 'MODIFIED_JULIAN_DAY.adjustInto()' and 'MODIFIED_JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects
192 * When 'RATA_DIE.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.
193 * 'RATA_DIE.adjustInto()' and 'RATA_DIE.getFrom()' only apply to {@code Temporal} objects
282 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
ChronoField.java     [all...]
IsoFields.java 336 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
406 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
461 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
535 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
WeekFields.java     [all...]
  /libcore/ojluni/src/main/java/java/time/chrono/
Era.java 288 * temporal = thisEra.adjustInto(temporal);
300 default Temporal adjustInto(Temporal temporal) {
ChronoLocalDate.java 439 return ChronoLocalDateImpl.ensureValid(getChronology(), field.adjustInto(this, newValue));
535 * temporal = thisLocalDate.adjustInto(temporal);
547 default Temporal adjustInto(Temporal temporal) {
    [all...]
ChronoLocalDateTime.java 365 * temporal = thisLocalDateTime.adjustInto(temporal);
377 default Temporal adjustInto(Temporal temporal) {
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
MockFieldNoValue.java 121 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
  /libcore/ojluni/src/main/java/java/time/
DayOfWeek.java 430 * temporal = thisDayOfWeek.adjustInto(temporal);
453 public Temporal adjustInto(Temporal temporal) {
Month.java 587 * temporal = thisMonth.adjustInto(temporal);
608 public Temporal adjustInto(Temporal temporal) {
MonthDay.java 609 * temporal = thisMonthDay.adjustInto(temporal);
621 public Temporal adjustInto(Temporal temporal) {
Year.java 556 * {@link TemporalAdjuster#adjustInto(Temporal)} method on the
568 return (Year) adjuster.adjustInto(this);
599 * is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)}
624 return field.adjustInto(this, newValue);
    [all...]
YearMonth.java 612 * {@link TemporalAdjuster#adjustInto(Temporal)} method on the
624 return (YearMonth) adjuster.adjustInto(this);
662 * is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)}
689 return field.adjustInto(this, newValue);
    [all...]
Instant.java 638 * {@link TemporalAdjuster#adjustInto(Temporal)} method on the
650 return (Instant) adjuster.adjustInto(this);
684 * is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)}
    [all...]
OffsetTime.java 662 * {@link TemporalAdjuster#adjustInto(Temporal)} method on the
682 return (OffsetTime) adjuster.adjustInto(this);
707 * is obtained by invoking {@code TemporalField.adjustInto(Temporal, long)}
729 return field.adjustInto(this, newValue);
    [all...]
LocalDateTime.java     [all...]
LocalTime.java 725 * {@link TemporalAdjuster#adjustInto(Temporal)} method on the
741 return (LocalTime) adjuster.adjustInto(this);
    [all...]
OffsetDateTime.java     [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/
TestMonthDay.java 119 assertSame(test.adjustInto(date), date);
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/
TCKJulianFields.java 134 assertEquals(field.adjustInto(LocalDate.MAX, value), date);
135 assertEquals(field.adjustInto(LocalDate.MIN, value), date);
136 assertEquals(field.adjustInto(JAN01_1970, value), date);
137 assertEquals(field.adjustInto(DEC31_1969, value), date);
138 assertEquals(field.adjustInto(NOV12_1945, value), date);
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKChronoLocalDate.java 346 public Temporal adjustInto(Temporal ignore) {
476 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
TCKChronoLocalDateTime.java 366 public Temporal adjustInto(Temporal ignore) {
447 * Construct an FixedTemporalField with the Temporal that should be returned from adjustInto.
497 public <R extends Temporal> R adjustInto(R temporal, long newValue) {
TCKChronoZonedDateTime.java 367 public Temporal adjustInto(Temporal ignore) {
449 * Construct an FixedTemporalField with the Temporal that should be returned from adjustInto.
499 public <R extends Temporal> R adjustInto(R temporal, long newValue) {

Completed in 508 milliseconds

1 2