All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fitbur.assertj.api.AbstractLocalDateTimeAssert Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/**
 * Licensed 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.
 *
 * Copyright 2012-2016 the original author or authors.
 */
package com.fitbur.assertj.api;

import static com.fitbur.assertj.error.ShouldBeAfter.shouldBeAfter;
import static com.fitbur.assertj.error.ShouldBeAfterOrEqualsTo.shouldBeAfterOrEqualsTo;
import static com.fitbur.assertj.error.ShouldBeBefore.shouldBeBefore;
import static com.fitbur.assertj.error.ShouldBeBeforeOrEqualsTo.shouldBeBeforeOrEqualsTo;
import static com.fitbur.assertj.error.ShouldBeEqualIgnoringHours.shouldBeEqualIgnoringHours;
import static com.fitbur.assertj.error.ShouldBeEqualIgnoringMinutes.shouldBeEqualIgnoringMinutes;
import static com.fitbur.assertj.error.ShouldBeEqualIgnoringNanos.shouldBeEqualIgnoringNanos;
import static com.fitbur.assertj.error.ShouldBeEqualIgnoringSeconds.shouldBeEqualIgnoringSeconds;

import java.time.LocalDateTime;

import com.fitbur.assertj.internal.Failures;
import com.fitbur.assertj.internal.Objects;

/**
 * Assertions for {@link LocalDateTime} type from new Date & Time API introduced in Java 8.
 * 
 * @author Paweł Stawicki
 * @author Joel Costigliola
 * @author Marcin Zajączkowski
 */
public abstract class AbstractLocalDateTimeAssert> extends
    AbstractAssert {

  public static final String NULL_LOCAL_DATE_TIME_PARAMETER_MESSAGE = "The LocalDateTime to compare actual with should not be null";

  /**
   * Creates a new {@link com.fitbur.assertj.api.AbstractLocalDateTimeAssert}.
   * 
   * @param selfType the "self type"
   * @param actual the actual value to verify
   */
  protected AbstractLocalDateTimeAssert(LocalDateTime actual, Class selfType) {
	super(actual, selfType);
  }

  // visible for test
  protected LocalDateTime getActual() {
	return actual;
  }

  /**
   * Verifies that the actual {@code LocalDateTime} is strictly before the given one.
   * 

* Example : *

 assertThat(parse("2000-01-01T23:59:59")).isBefore(parse("2000-01-02T00:00:00"));
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is not strictly before the given one. */ public S isBefore(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!actual.isBefore(other)) { throw Failures.instance().failure(info, shouldBeBefore(actual, other)); } return myself; } /** * Same assertion as {@link #isBefore(LocalDateTime)} but the {@link LocalDateTime} is built from given String, which * must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use directly String in comparison to avoid writing the code to perform the conversion
   * assertThat(parse("2000-01-01T23:59:59")).isBefore("2000-01-02T00:00:00");
* * @param localDateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not strictly before the {@link LocalDateTime} built * from given String. */ public S isBefore(String localDateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(localDateTimeAsString); return isBefore(LocalDateTime.parse(localDateTimeAsString)); } /** * Verifies that the actual {@code LocalDateTime} is before or equals to the given one. *

* Example : *

 assertThat(parse("2000-01-01T23:59:59")).isBeforeOrEqualTo(parse("2000-01-01T23:59:59"))
   *                                         .isBeforeOrEqualTo(parse("2000-01-02T00:00:00"));
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is not before or equals to the given one. */ public S isBeforeOrEqualTo(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (actual.isAfter(other)) { throw Failures.instance().failure(info, shouldBeBeforeOrEqualsTo(actual, other)); } return myself; } /** * Same assertion as {@link #isBeforeOrEqualTo(LocalDateTime)} but the {@link LocalDateTime} is built from given * String, which must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use String in comparison to avoid conversion
   * assertThat(parse("2000-01-01T23:59:59")).isBeforeOrEqualTo("2000-01-01T23:59:59")
   *                                         .isBeforeOrEqualTo("2000-01-02T00:00:00");
* * @param localDateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not before or equals to the {@link LocalDateTime} * built from given String. */ public S isBeforeOrEqualTo(String localDateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(localDateTimeAsString); return isBeforeOrEqualTo(LocalDateTime.parse(localDateTimeAsString)); } /** * Verifies that the actual {@code LocalDateTime} is after or equals to the given one. *

* Example : *

 assertThat(parse("2000-01-01T00:00:00")).isAfterOrEqualTo(parse("2000-01-01T00:00:00"))
   *                                         .isAfterOrEqualTo(parse("1999-12-31T23:59:59"));
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is not after or equals to the given one. */ public S isAfterOrEqualTo(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (actual.isBefore(other)) { throw Failures.instance().failure(info, shouldBeAfterOrEqualsTo(actual, other)); } return myself; } /** * Same assertion as {@link #isAfterOrEqualTo(LocalDateTime)} but the {@link LocalDateTime} is built from given * String, which must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use String in comparison to avoid conversion
   * assertThat(parse("2000-01-01T00:00:00")).isAfterOrEqualTo("2000-01-01T00:00:00")
   *                                         .isAfterOrEqualTo("1999-12-31T23:59:59");
* * @param localDateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not after or equals to the {@link LocalDateTime} * built from given String. */ public S isAfterOrEqualTo(String localDateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(localDateTimeAsString); return isAfterOrEqualTo(LocalDateTime.parse(localDateTimeAsString)); } /** * Verifies that the actual {@code LocalDateTime} is strictly after the given one. *

* Example : *

 assertThat(parse("2000-01-01T00:00:00")).isAfter(parse("1999-12-31T23:59:59"));
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is not strictly after the given one. */ public S isAfter(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!actual.isAfter(other)) { throw Failures.instance().failure(info, shouldBeAfter(actual, other)); } return myself; } /** * Same assertion as {@link #isAfter(LocalDateTime)} but the {@link LocalDateTime} is built from given a String that * must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use String in comparison to avoid conversion
   * assertThat(parse("2000-01-01T00:00:00")).isAfter("1999-12-31T23:59:59");
* * @param localDateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not strictly after the {@link LocalDateTime} built * from given String. */ public S isAfter(String localDateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(localDateTimeAsString); return isAfter(LocalDateTime.parse(localDateTimeAsString)); } /** * Same assertion as {@link #isEqualTo(Object)} (where Object is expected to be {@link LocalDateTime}) but here you * pass {@link LocalDateTime} String representation that must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use directly String in comparison to avoid writing the code to perform the conversion
   * assertThat(parse("2000-01-01T00:00:00")).isEqualTo("2000-01-01T00:00:00");
* * @param dateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not equal to the {@link LocalDateTime} built from * given String. */ public S isEqualTo(String dateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(dateTimeAsString); return isEqualTo(LocalDateTime.parse(dateTimeAsString)); } /** * Same assertion as {@link #isNotEqualTo(Object)} (where Object is expected to be {@link LocalDateTime}) but here you * pass {@link LocalDateTime} String representation that must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use directly String in comparison to avoid writing the code to perform the conversion
   * assertThat(parse("2000-01-01T00:00:00")).isNotEqualTo("2000-01-15T00:00:00");
* * @param dateTimeAsString String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is equal to the {@link LocalDateTime} built from given * String. */ public S isNotEqualTo(String dateTimeAsString) { assertLocalDateTimeAsStringParameterIsNotNull(dateTimeAsString); return isNotEqualTo(LocalDateTime.parse(dateTimeAsString)); } /** * Same assertion as {@link #isIn(Object...)} (where Objects are expected to be {@link LocalDateTime}) but here you * pass {@link LocalDateTime} String representations that must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use String based representation of LocalDateTime
   * assertThat(parse("2000-01-01T00:00:00")).isIn("1999-12-31T00:00:00", "2000-01-01T00:00:00");
* * @param dateTimesAsString String array representing {@link LocalDateTime}s. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is not in the {@link LocalDateTime}s built from given * Strings. */ public S isIn(String... dateTimesAsString) { checkIsNotNullAndNotEmpty(dateTimesAsString); return isIn(convertToLocalDateTimeArray(dateTimesAsString)); } /** * Same assertion as {@link #isNotIn(Object...)} (where Objects are expected to be {@link LocalDateTime}) but here you * pass {@link LocalDateTime} String representations that must follow ISO LocalDateTime format to allow calling {@link LocalDateTime#parse(CharSequence)} method. *

* Example : *

 // use String based representation of LocalDateTime
   * assertThat(parse("2000-01-01T00:00:00")).isNotIn("1999-12-31T00:00:00", "2000-01-02T00:00:00");
* * @param dateTimesAsString Array of String representing a {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if given String is null or can't be converted to a {@link LocalDateTime}. * @throws AssertionError if the actual {@code LocalDateTime} is in the {@link LocalDateTime}s built from given * Strings. */ public S isNotIn(String... dateTimesAsString) { checkIsNotNullAndNotEmpty(dateTimesAsString); return isNotIn(convertToLocalDateTimeArray(dateTimesAsString)); } private static Object[] convertToLocalDateTimeArray(String... dateTimesAsString) { LocalDateTime[] dates = new LocalDateTime[dateTimesAsString.length]; for (int i = 0; i < dateTimesAsString.length; i++) { dates[i] = LocalDateTime.parse(dateTimesAsString[i]); } return dates; } private void checkIsNotNullAndNotEmpty(Object[] values) { if (values == null) { throw new IllegalArgumentException("The given LocalDateTime array should not be null"); } if (values.length == 0) { throw new IllegalArgumentException("The given LocalDateTime array should not be empty"); } } /** * Check that the {@link LocalDateTime} string representation to compare actual {@link LocalDateTime} to is not null, * otherwise throws a {@link IllegalArgumentException} with an explicit message * * @param localDateTimeAsString String representing the {@link LocalDateTime} to compare actual with * @throws IllegalArgumentException with an explicit message if the given {@link String} is null */ private static void assertLocalDateTimeAsStringParameterIsNotNull(String localDateTimeAsString) { if (localDateTimeAsString == null) { throw new IllegalArgumentException( "The String representing the LocalDateTime to compare actual with should not be null"); } } /** * Check that the {@link LocalDateTime} to compare actual {@link LocalDateTime} to is not null, in that case throws a * {@link IllegalArgumentException} with an explicit message * * @param other the {@link LocalDateTime} to check * @throws IllegalArgumentException with an explicit message if the given {@link LocalDateTime} is null */ private static void assertLocalDateTimeParameterIsNotNull(LocalDateTime other) { if (other == null) { throw new IllegalArgumentException("The LocalDateTime to compare actual with should not be null"); } } /** * Verifies that actual and given {@code LocalDateTime} have same year, month, day, hour, minute and second fields, * (nanosecond fields are ignored in comparison). *

* Assertion can fail with localDateTimes in same chronological nanosecond time window, e.g : *

* 2000-01-01T00:00:01.000000000 and 2000-01-01T00:00:00.999999999. *

* Assertion fails as second fields differ even if time difference is only 1ns. *

* Code example : *

 // successful assertions
   * LocalDateTime localDateTime1 = LocalDateTime.of(2000, 1, 1, 0, 0, 1, 0);
   * LocalDateTime localDateTime2 = LocalDateTime.of(2000, 1, 1, 0, 0, 1, 456);
   * assertThat(localDateTime1).isEqualToIgnoringNanos(localDateTime2);
   * 
   * // failing assertions (even if time difference is only 1ms)
   * LocalDateTime localDateTimeA = LocalDateTime.of(2000, 1, 1, 0, 0, 1, 0);
   * LocalDateTime localDateTimeB = LocalDateTime.of(2000, 1, 1, 0, 0, 0, 999999999);
   * assertThat(localDateTimeA).isEqualToIgnoringNanos(localDateTimeB);
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is are not equal with nanoseconds ignored. */ public S isEqualToIgnoringNanos(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!areEqualIgnoringNanos(actual, other)) { throw Failures.instance().failure(info, shouldBeEqualIgnoringNanos(actual, other)); } return myself; } /** * Verifies that actual and given {@link LocalDateTime} have same year, month, day, hour and minute fields (second and * nanosecond fields are ignored in comparison). *

* Assertion can fail with LocalDateTimes in same chronological second time window, e.g : *

* 2000-01-01T00:01:00.000 and 2000-01-01T00:00:59.000. *

* Assertion fails as minute fields differ even if time difference is only 1s. *

* Code example : *

 // successful assertions
   * LocalDateTime localDateTime1 = LocalDateTime.of(2000, 1, 1, 23, 50, 0, 0);
   * LocalDateTime localDateTime2 = LocalDateTime.of(2000, 1, 1, 23, 50, 10, 456);
   * assertThat(localDateTime1).isEqualToIgnoringSeconds(localDateTime2);
   * 
   * // failing assertions (even if time difference is only 1ms)
   * LocalDateTime localDateTimeA = LocalDateTime.of(2000, 1, 1, 23, 50, 00, 000);
   * LocalDateTime localDateTimeB = LocalDateTime.of(2000, 1, 1, 23, 49, 59, 999);
   * assertThat(localDateTimeA).isEqualToIgnoringSeconds(localDateTimeB);
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is are not equal with second and nanosecond fields * ignored. */ public S isEqualToIgnoringSeconds(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!areEqualIgnoringSeconds(actual, other)) { throw Failures.instance().failure(info, shouldBeEqualIgnoringSeconds(actual, other)); } return myself; } /** * Verifies that actual and given {@code LocalDateTime} have same year, month, day and hour fields (minute, second and * nanosecond fields are ignored in comparison). *

* Assertion can fail with localDateTimes in same chronological second time window, e.g : *

* 2000-01-01T01:00:00.000 and 2000-01-01T00:59:59.000. *

* Time difference is only 1s but hour fields differ. *

* Code example : *

 // successful assertions
   * LocalDateTime localDateTime1 = LocalDateTime.of(2000, 1, 1, 23, 50, 0, 0);
   * LocalDateTime localDateTime2 = LocalDateTime.of(2000, 1, 1, 23, 00, 2, 7);
   * assertThat(localDateTime1).isEqualToIgnoringMinutes(localDateTime2);
   * 
   * // failing assertions (even if time difference is only 1ms)
   * LocalDateTime localDateTimeA = LocalDateTime.of(2000, 1, 1, 01, 00, 00, 000);
   * LocalDateTime localDateTimeB = LocalDateTime.of(2000, 1, 1, 00, 59, 59, 999);
   * assertThat(localDateTimeA).isEqualToIgnoringMinutes(localDateTimeB);
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is are not equal ignoring minute, second and nanosecond * fields. */ public S isEqualToIgnoringMinutes(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!areEqualIgnoringMinutes(actual, other)) { throw Failures.instance().failure(info, shouldBeEqualIgnoringMinutes(actual, other)); } return myself; } /** * Verifies that actual and given {@code LocalDateTime} have same year, month and day fields (hour, minute, second and * nanosecond fields are ignored in comparison). *

* Assertion can fail with localDateTimes in same chronological minute time window, e.g : *

* 2000-01-01T23:59:00.000 and 2000-01-02T00:00:00.000. *

* Time difference is only 1min but day fields differ. *

* Code example : *

 // successful assertions
   * LocalDateTime localDateTime1 = LocalDateTime.of(2000, 1, 1, 23, 59, 59, 999);
   * LocalDateTime localDateTime2 = LocalDateTime.of(2000, 1, 1, 00, 00, 00, 000);
   * assertThat(localDateTime1).isEqualToIgnoringHours(localDateTime2);
   * 
   * // failing assertions (even if time difference is only 1ms)
   * LocalDateTime localDateTimeA = LocalDateTime.of(2000, 1, 2, 00, 00, 00, 000);
   * LocalDateTime localDateTimeB = LocalDateTime.of(2000, 1, 1, 23, 59, 59, 999);
   * assertThat(localDateTimeA).isEqualToIgnoringHours(localDateTimeB);
* * @param other the given {@link LocalDateTime}. * @return this assertion object. * @throws AssertionError if the actual {@code LocalDateTime} is {@code null}. * @throws IllegalArgumentException if other {@code LocalDateTime} is {@code null}. * @throws AssertionError if the actual {@code LocalDateTime} is are not equal with second and nanosecond fields * ignored. */ public S isEqualToIgnoringHours(LocalDateTime other) { Objects.instance().assertNotNull(info, actual); assertLocalDateTimeParameterIsNotNull(other); if (!haveSameYearMonthAndDayOfMonth(actual, other)) { throw Failures.instance().failure(info, shouldBeEqualIgnoringHours(actual, other)); } return myself; } /** * Returns true if both datetime are in the same year, month and day of month, hour, minute and second, false * otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year, month and day of month, hour, minute and second, false * otherwise. */ private static boolean areEqualIgnoringNanos(LocalDateTime actual, LocalDateTime other) { return areEqualIgnoringSeconds(actual, other) && actual.getSecond() == other.getSecond(); } /** * Returns true if both datetime are in the same year, month, day of month, hour and minute, false otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year, month, day of month, hour and minute, false otherwise. */ private static boolean areEqualIgnoringSeconds(LocalDateTime actual, LocalDateTime other) { return areEqualIgnoringMinutes(actual, other) && actual.getMinute() == other.getMinute(); } /** * Returns true if both datetime are in the same year, month, day of month and hour, false otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year, month, day of month and hour, false otherwise. */ private static boolean areEqualIgnoringMinutes(LocalDateTime actual, LocalDateTime other) { return haveSameYearMonthAndDayOfMonth(actual, other) && actual.getHour() == other.getHour(); } /** * Returns true if both datetime are in the same year, month and day of month, false otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year, month and day of month, false otherwise */ private static boolean haveSameYearMonthAndDayOfMonth(LocalDateTime actual, LocalDateTime other) { return haveSameYearAndMonth(actual, other) && actual.getDayOfMonth() == other.getDayOfMonth(); } /** * Returns true if both datetime are in the same year and month, false otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year and month, false otherwise */ private static boolean haveSameYearAndMonth(LocalDateTime actual, LocalDateTime other) { return haveSameYear(actual, other) && actual.getMonth() == other.getMonth(); } /** * Returns true if both datetime are in the same year, false otherwise. * * @param actual the actual datetime. expected not be null * @param other the other datetime. expected not be null * @return true if both datetime are in the same year, false otherwise */ private static boolean haveSameYear(LocalDateTime actual, LocalDateTime other) { return actual.getYear() == other.getYear(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy