LocalDateTime withMinute(int minute) example

Description

LocalDateTime withMinute(int minute) returns a copy of this LocalDateTime with the minute-of-hour value altered.

Syntax

withMinute has the following syntax.


public LocalDateTime withMinute(int minute)

Example

The following example shows how to use withMinute.


import java.time.LocalDateTime;
//from w ww. j  ava2  s  .  com
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    LocalDateTime t = a.withMinute(34);
    
    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