Instant minus(long amountToSubtract, TemporalUnit unit) example

Description

Instant minus(long amountToSubtract, TemporalUnit unit) returns a copy of this instant with the specified amount subtracted.

Syntax

minus has the following syntax.


public Instant minus(long amountToSubtract,  TemporalUnit unit)

Example

The following example shows how to use minus.


import java.time.Instant;
import java.time.temporal.ChronoUnit;
/*from   www .  j  a  v a 2  s . c o  m*/
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    instant = instant.minus(100,ChronoUnit.DAYS);
    System.out.println(instant);
 
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset