LocalDateTime minusMinutes(long minutes)
returns a copy of this
LocalDateTime with the specified period in minutes subtracted.
minusMinutes
has the following syntax.
public LocalDateTime minusMinutes(long minutes)
The following example shows how to use minusMinutes
.
import java.time.LocalDateTime; /*from www . ja v a2 s . com*/ 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.