LocalDateTime minusMinutes(long minutes) example

Description

LocalDateTime minusMinutes(long minutes) returns a copy of this LocalDateTime with the specified period in minutes subtracted.

Syntax

minusMinutes has the following syntax.


public LocalDateTime minusMinutes(long minutes)

Example

The following example shows how to use minusMinutes.


import java.time.LocalDateTime;
//from w w  w .j a  v  a  2s.co  m
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
    
    LocalDateTime t = a.minusMinutes(100);
    
    System.out.println(t);
  }
}

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