OffsetDateTime plusMinutes(long minutes) example
Description
OffsetDateTime plusMinutes(long minutes)
returns a copy of this OffsetDateTime with the specified period in minutes added.
Syntax
plusMinutes
has the following syntax.
public OffsetDateTime plusMinutes(long minutes)
Example
The following example shows how to use plusMinutes
.
import java.time.OffsetDateTime;
//ww w. j a v a 2s. c om
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.plusMinutes(20);
System.out.println(d);
}
}
The code above generates the following result.