Java LocalDateTime Calculate add(final LocalDateTime original, final int years, final int months, final int days, final int hours, final int minutes)

Here you can find the source of add(final LocalDateTime original, final int years, final int months, final int days, final int hours, final int minutes)

Description

add

License

Apache License

Declaration

private static LocalDateTime add(final LocalDateTime original, final int years, final int months,
            final int days, final int hours, final int minutes) 

Method Source Code

//package com.java2s;
/*/*from   w w w. jav  a2 s .co m*/
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License.
 */

import java.time.LocalDateTime;

public class Main {
    private static LocalDateTime add(final LocalDateTime original, final int years, final int months,
            final int days, final int hours, final int minutes) {
        return original.plusYears(years).plusMonths(months).plusDays(days).plusHours(hours).plusMinutes(minutes);
    }
}

Related

  1. addHeureMinute(final LocalDateTime time, final int heures, final int minutes)
  2. areDatesOneMonthApart(LocalDateTime start, LocalDateTime end)
  3. atMidnight(LocalDateTime value)
  4. balanceStartAndEndDateTime(LocalDateTime startDateTime, LocalDateTime endDateTime)