DateUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.time;

  18. import java.text.ParseException;
  19. import java.text.ParsePosition;
  20. import java.util.Calendar;
  21. import java.util.Date;
  22. import java.util.Iterator;
  23. import java.util.Locale;
  24. import java.util.NoSuchElementException;
  25. import java.util.Objects;
  26. import java.util.TimeZone;
  27. import java.util.concurrent.TimeUnit;

  28. import org.apache.commons.lang3.LocaleUtils;

  29. /**
  30.  * A suite of utilities surrounding the use of the
  31.  * {@link java.util.Calendar} and {@link java.util.Date} object.
  32.  *
  33.  * <p>DateUtils contains a lot of common methods considering manipulations
  34.  * of Dates or Calendars. Some methods require some extra explanation.
  35.  * The truncate, ceiling and round methods could be considered the Math.floor(),
  36.  * Math.ceil() or Math.round versions for dates
  37.  * This way date-fields will be ignored in bottom-up order.
  38.  * As a complement to these methods we've introduced some fragment-methods.
  39.  * With these methods the Date-fields will be ignored in top-down order.
  40.  * Since a date without a year is not a valid date, you have to decide in what
  41.  * kind of date-field you want your result, for instance milliseconds or days.
  42.  * </p>
  43.  * <p>
  44.  * Several methods are provided for adding to {@link Date} objects, of the form
  45.  * {@code addXXX(Date date, int amount)}. It is important to note these methods
  46.  * use a {@link Calendar} internally (with default time zone and locale) and may
  47.  * be affected by changes to daylight saving time (DST).
  48.  * </p>
  49.  *
  50.  * @since 2.0
  51.  */
  52. public class DateUtils {

  53.     /**
  54.      * Date iterator.
  55.      */
  56.     static class DateIterator implements Iterator<Calendar> {
  57.         private final Calendar endFinal;
  58.         private final Calendar spot;

  59.         /**
  60.          * Constructs a DateIterator that ranges from one date to another.
  61.          *
  62.          * @param startFinal start date (inclusive)
  63.          * @param endFinal end date (inclusive)
  64.          */
  65.         DateIterator(final Calendar startFinal, final Calendar endFinal) {
  66.             this.endFinal = endFinal;
  67.             spot = startFinal;
  68.             spot.add(Calendar.DATE, -1);
  69.         }

  70.         /**
  71.          * Has the iterator not reached the end date yet?
  72.          *
  73.          * @return {@code true} if the iterator has yet to reach the end date
  74.          */
  75.         @Override
  76.         public boolean hasNext() {
  77.             return spot.before(endFinal);
  78.         }

  79.         /**
  80.          * Returns the next calendar in the iteration
  81.          *
  82.          * @return Object calendar for the next date
  83.          */
  84.         @Override
  85.         public Calendar next() {
  86.             if (spot.equals(endFinal)) {
  87.                 throw new NoSuchElementException();
  88.             }
  89.             spot.add(Calendar.DATE, 1);
  90.             return (Calendar) spot.clone();
  91.         }

  92.         /**
  93.          * Always throws UnsupportedOperationException.
  94.          *
  95.          * @throws UnsupportedOperationException Always thrown.
  96.          * @see java.util.Iterator#remove()
  97.          */
  98.         @Override
  99.         public void remove() {
  100.             throw new UnsupportedOperationException();
  101.         }
  102.     }

  103.     /**
  104.      * Calendar modification types.
  105.      */
  106.     private enum ModifyType {
  107.         /**
  108.          * Truncation.
  109.          */
  110.         TRUNCATE,

  111.         /**
  112.          * Rounding.
  113.          */
  114.         ROUND,

  115.         /**
  116.          * Ceiling.
  117.          */
  118.         CEILING
  119.     }

  120.     /**
  121.      * Number of milliseconds in a standard second.
  122.      *
  123.      * @since 2.1
  124.      */
  125.     public static final long MILLIS_PER_SECOND = 1_000;

  126.     /**
  127.      * Number of milliseconds in a standard minute.
  128.      *
  129.      * @since 2.1
  130.      */
  131.     public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND;

  132.     /**
  133.      * Number of milliseconds in a standard hour.
  134.      *
  135.      * @since 2.1
  136.      */
  137.     public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE;

  138.     /**
  139.      * Number of milliseconds in a standard day.
  140.      *
  141.      * @since 2.1
  142.      */
  143.     public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR;

  144.     /**
  145.      * This is half a month, so this represents whether a date is in the top
  146.      * or bottom half of the month.
  147.      */
  148.     public static final int SEMI_MONTH = 1001;
  149.     private static final int[][] fields = {
  150.             {Calendar.MILLISECOND},
  151.             {Calendar.SECOND},
  152.             {Calendar.MINUTE},
  153.             {Calendar.HOUR_OF_DAY, Calendar.HOUR},
  154.             {Calendar.DATE, Calendar.DAY_OF_MONTH, Calendar.AM_PM
  155.                 /* Calendar.DAY_OF_YEAR, Calendar.DAY_OF_WEEK, Calendar.DAY_OF_WEEK_IN_MONTH */
  156.             },
  157.             {Calendar.MONTH, SEMI_MONTH},
  158.             {Calendar.YEAR},
  159.             {Calendar.ERA}};
  160.     /**
  161.      * A week range, starting on Sunday.
  162.      */
  163.     public static final int RANGE_WEEK_SUNDAY = 1;

  164.     /**
  165.      * A week range, starting on Monday.
  166.      */
  167.     public static final int RANGE_WEEK_MONDAY = 2;

  168.     /**
  169.      * A week range, starting on the day focused.
  170.      */
  171.     public static final int RANGE_WEEK_RELATIVE = 3;

  172.     /**
  173.      * A week range, centered around the day focused.
  174.      */
  175.     public static final int RANGE_WEEK_CENTER = 4;

  176.     /**
  177.      * A month range, the week starting on Sunday.
  178.      */
  179.     public static final int RANGE_MONTH_SUNDAY = 5;

  180.     /**
  181.      * A month range, the week starting on Monday.
  182.      */
  183.     public static final int RANGE_MONTH_MONDAY = 6;

  184.     /**
  185.      * Adds to a date returning a new object.
  186.      * The original {@link Date} is unchanged.
  187.      *
  188.      * @param date  the date, not null
  189.      * @param calendarField  the calendar field to add to
  190.      * @param amount  the amount to add, may be negative
  191.      * @return the new {@link Date} with the amount added
  192.      * @throws NullPointerException if the date is null
  193.      */
  194.     private static Date add(final Date date, final int calendarField, final int amount) {
  195.         validateDateNotNull(date);
  196.         final Calendar c = Calendar.getInstance();
  197.         c.setTime(date);
  198.         c.add(calendarField, amount);
  199.         return c.getTime();
  200.     }

  201.     /**
  202.      * Adds a number of days to a date returning a new object.
  203.      * The original {@link Date} is unchanged.
  204.      *
  205.      * @param date  the date, not null
  206.      * @param amount  the amount to add, may be negative
  207.      * @return the new {@link Date} with the amount added
  208.      * @throws NullPointerException if the date is null
  209.      */
  210.     public static Date addDays(final Date date, final int amount) {
  211.         return add(date, Calendar.DAY_OF_MONTH, amount);
  212.     }

  213.     /**
  214.      * Adds a number of hours to a date returning a new object.
  215.      * The original {@link Date} is unchanged.
  216.      *
  217.      * @param date  the date, not null
  218.      * @param amount  the amount to add, may be negative
  219.      * @return the new {@link Date} with the amount added
  220.      * @throws NullPointerException if the date is null
  221.      */
  222.     public static Date addHours(final Date date, final int amount) {
  223.         return add(date, Calendar.HOUR_OF_DAY, amount);
  224.     }

  225.     /**
  226.      * Adds a number of milliseconds to a date returning a new object.
  227.      * The original {@link Date} is unchanged.
  228.      *
  229.      * @param date  the date, not null
  230.      * @param amount  the amount to add, may be negative
  231.      * @return the new {@link Date} with the amount added
  232.      * @throws NullPointerException if the date is null
  233.      */
  234.     public static Date addMilliseconds(final Date date, final int amount) {
  235.         return add(date, Calendar.MILLISECOND, amount);
  236.     }

  237.     /**
  238.      * Adds a number of minutes to a date returning a new object.
  239.      * The original {@link Date} is unchanged.
  240.      *
  241.      * @param date  the date, not null
  242.      * @param amount  the amount to add, may be negative
  243.      * @return the new {@link Date} with the amount added
  244.      * @throws NullPointerException if the date is null
  245.      */
  246.     public static Date addMinutes(final Date date, final int amount) {
  247.         return add(date, Calendar.MINUTE, amount);
  248.     }

  249.     /**
  250.      * Adds a number of months to a date returning a new object.
  251.      * The original {@link Date} is unchanged.
  252.      *
  253.      * @param date  the date, not null
  254.      * @param amount  the amount to add, may be negative
  255.      * @return the new {@link Date} with the amount added
  256.      * @throws NullPointerException if the date is null
  257.      */
  258.     public static Date addMonths(final Date date, final int amount) {
  259.         return add(date, Calendar.MONTH, amount);
  260.     }

  261.     /**
  262.      * Adds a number of seconds to a date returning a new object.
  263.      * The original {@link Date} is unchanged.
  264.      *
  265.      * @param date  the date, not null
  266.      * @param amount  the amount to add, may be negative
  267.      * @return the new {@link Date} with the amount added
  268.      * @throws NullPointerException if the date is null
  269.      */
  270.     public static Date addSeconds(final Date date, final int amount) {
  271.         return add(date, Calendar.SECOND, amount);
  272.     }

  273.     /**
  274.      * Adds a number of weeks to a date returning a new object.
  275.      * The original {@link Date} is unchanged.
  276.      *
  277.      * @param date  the date, not null
  278.      * @param amount  the amount to add, may be negative
  279.      * @return the new {@link Date} with the amount added
  280.      * @throws NullPointerException if the date is null
  281.      */
  282.     public static Date addWeeks(final Date date, final int amount) {
  283.         return add(date, Calendar.WEEK_OF_YEAR, amount);
  284.     }

  285.     /**
  286.      * Adds a number of years to a date returning a new object.
  287.      * The original {@link Date} is unchanged.
  288.      *
  289.      * @param date  the date, not null
  290.      * @param amount  the amount to add, may be negative
  291.      * @return the new {@link Date} with the amount added
  292.      * @throws NullPointerException if the date is null
  293.      */
  294.     public static Date addYears(final Date date, final int amount) {
  295.         return add(date, Calendar.YEAR, amount);
  296.     }

  297.     /**
  298.      * Gets a date ceiling, leaving the field specified as the most
  299.      * significant field.
  300.      *
  301.      * <p>For example, if you had the date-time of 28 Mar 2002
  302.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  303.      * 2002 14:00:00.000.  If this was passed with MONTH, it would
  304.      * return 1 Apr 2002 0:00:00.000.</p>
  305.      *
  306.      * @param calendar  the date to work with, not null
  307.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  308.      * @return the different ceil date, not null
  309.      * @throws NullPointerException if the date is {@code null}
  310.      * @throws ArithmeticException if the year is over 280 million
  311.      * @since 2.5
  312.      */
  313.     public static Calendar ceiling(final Calendar calendar, final int field) {
  314.         Objects.requireNonNull(calendar, "calendar");
  315.         return modify((Calendar) calendar.clone(), field, ModifyType.CEILING);
  316.     }

  317.     /**
  318.      * Gets a date ceiling, leaving the field specified as the most
  319.      * significant field.
  320.      *
  321.      * <p>For example, if you had the date-time of 28 Mar 2002
  322.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  323.      * 2002 14:00:00.000.  If this was passed with MONTH, it would
  324.      * return 1 Apr 2002 0:00:00.000.</p>
  325.      *
  326.      * @param date  the date to work with, not null
  327.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  328.      * @return the different ceil date, not null
  329.      * @throws NullPointerException if the date is {@code null}
  330.      * @throws ArithmeticException if the year is over 280 million
  331.      * @since 2.5
  332.      */
  333.     public static Date ceiling(final Date date, final int field) {
  334.         return modify(toCalendar(date), field, ModifyType.CEILING).getTime();
  335.     }

  336.     /**
  337.      * Gets a date ceiling, leaving the field specified as the most
  338.      * significant field.
  339.      *
  340.      * <p>For example, if you had the date-time of 28 Mar 2002
  341.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  342.      * 2002 14:00:00.000.  If this was passed with MONTH, it would
  343.      * return 1 Apr 2002 0:00:00.000.</p>
  344.      *
  345.      * @param date  the date to work with, either {@link Date} or {@link Calendar}, not null
  346.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  347.      * @return the different ceil date, not null
  348.      * @throws NullPointerException if the date is {@code null}
  349.      * @throws ClassCastException if the object type is not a {@link Date} or {@link Calendar}
  350.      * @throws ArithmeticException if the year is over 280 million
  351.      * @since 2.5
  352.      */
  353.     public static Date ceiling(final Object date, final int field) {
  354.         Objects.requireNonNull(date, "date");
  355.         if (date instanceof Date) {
  356.             return ceiling((Date) date, field);
  357.         }
  358.         if (date instanceof Calendar) {
  359.             return ceiling((Calendar) date, field).getTime();
  360.         }
  361.         throw new ClassCastException("Could not find ceiling of for type: " + date.getClass());
  362.     }

  363.     /**
  364.      * Gets a Calendar fragment for any unit.
  365.      *
  366.      * @param calendar the calendar to work with, not null
  367.      * @param fragment the Calendar field part of calendar to calculate
  368.      * @param unit the time unit
  369.      * @return number of units within the fragment of the calendar
  370.      * @throws NullPointerException if the date is {@code null} or
  371.      * fragment is not supported
  372.      * @since 2.4
  373.      */
  374.     private static long getFragment(final Calendar calendar, final int fragment, final TimeUnit unit) {
  375.         Objects.requireNonNull(calendar, "calendar");
  376.         long result = 0;
  377.         final int offset = unit == TimeUnit.DAYS ? 0 : 1;

  378.         // Fragments bigger than a day require a breakdown to days
  379.         switch (fragment) {
  380.             case Calendar.YEAR:
  381.                 result += unit.convert(calendar.get(Calendar.DAY_OF_YEAR) - offset, TimeUnit.DAYS);
  382.                 break;
  383.             case Calendar.MONTH:
  384.                 result += unit.convert(calendar.get(Calendar.DAY_OF_MONTH) - offset, TimeUnit.DAYS);
  385.                 break;
  386.             default:
  387.                 break;
  388.         }

  389.         switch (fragment) {
  390.             // Number of days already calculated for these cases
  391.             case Calendar.YEAR:
  392.             case Calendar.MONTH:

  393.             // The rest of the valid cases
  394.             case Calendar.DAY_OF_YEAR:
  395.             case Calendar.DATE:
  396.                 result += unit.convert(calendar.get(Calendar.HOUR_OF_DAY), TimeUnit.HOURS);
  397.                 //$FALL-THROUGH$
  398.             case Calendar.HOUR_OF_DAY:
  399.                 result += unit.convert(calendar.get(Calendar.MINUTE), TimeUnit.MINUTES);
  400.                 //$FALL-THROUGH$
  401.             case Calendar.MINUTE:
  402.                 result += unit.convert(calendar.get(Calendar.SECOND), TimeUnit.SECONDS);
  403.                 //$FALL-THROUGH$
  404.             case Calendar.SECOND:
  405.                 result += unit.convert(calendar.get(Calendar.MILLISECOND), TimeUnit.MILLISECONDS);
  406.                 break;
  407.             case Calendar.MILLISECOND: break; //never useful
  408.                 default: throw new IllegalArgumentException("The fragment " + fragment + " is not supported");
  409.         }
  410.         return result;
  411.     }

  412.     /**
  413.      * Gets a Date fragment for any unit.
  414.      *
  415.      * @param date the date to work with, not null
  416.      * @param fragment the Calendar field part of date to calculate
  417.      * @param unit the time unit
  418.      * @return number of units within the fragment of the date
  419.      * @throws NullPointerException if the date is {@code null}
  420.      * @throws IllegalArgumentException if fragment is not supported
  421.      * @since 2.4
  422.      */
  423.     private static long getFragment(final Date date, final int fragment, final TimeUnit unit) {
  424.         validateDateNotNull(date);
  425.         final Calendar calendar = Calendar.getInstance();
  426.         calendar.setTime(date);
  427.         return getFragment(calendar, fragment, unit);
  428.     }

  429.     /**
  430.      * Returns the number of days within the
  431.      * fragment. All datefields greater than the fragment will be ignored.
  432.      *
  433.      * <p>Asking the days of any date will only return the number of days
  434.      * of the current month (resulting in a number between 1 and 31). This
  435.      * method will retrieve the number of days for any fragment.
  436.      * For example, if you want to calculate the number of days past this year,
  437.      * your fragment is Calendar.YEAR. The result will be all days of the
  438.      * past month(s).</p>
  439.      *
  440.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  441.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  442.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  443.      * A fragment less than or equal to a DAY field will return 0.</p>
  444.      *
  445.      * <ul>
  446.      *  <li>January 28, 2008 with Calendar.MONTH as fragment will return 28
  447.      *   (equivalent to calendar.get(Calendar.DAY_OF_MONTH))</li>
  448.      *  <li>February 28, 2008 with Calendar.MONTH as fragment will return 28
  449.      *   (equivalent to calendar.get(Calendar.DAY_OF_MONTH))</li>
  450.      *  <li>January 28, 2008 with Calendar.YEAR as fragment will return 28
  451.      *   (equivalent to calendar.get(Calendar.DAY_OF_YEAR))</li>
  452.      *  <li>February 28, 2008 with Calendar.YEAR as fragment will return 59
  453.      *   (equivalent to calendar.get(Calendar.DAY_OF_YEAR))</li>
  454.      *  <li>January 28, 2008 with Calendar.MILLISECOND as fragment will return 0
  455.      *   (a millisecond cannot be split in days)</li>
  456.      * </ul>
  457.      *
  458.      * @param calendar the calendar to work with, not null
  459.      * @param fragment the {@link Calendar} field part of calendar to calculate
  460.      * @return number of days within the fragment of date
  461.      * @throws NullPointerException if the date is {@code null} or
  462.      * fragment is not supported
  463.      * @since 2.4
  464.      */
  465.     public static long getFragmentInDays(final Calendar calendar, final int fragment) {
  466.         return getFragment(calendar, fragment, TimeUnit.DAYS);
  467.     }

  468.     /**
  469.      * Returns the number of days within the
  470.      * fragment. All date fields greater than the fragment will be ignored.
  471.      *
  472.      * <p>Asking the days of any date will only return the number of days
  473.      * of the current month (resulting in a number between 1 and 31). This
  474.      * method will retrieve the number of days for any fragment.
  475.      * For example, if you want to calculate the number of days past this year,
  476.      * your fragment is Calendar.YEAR. The result will be all days of the
  477.      * past month(s).</p>
  478.      *
  479.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  480.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  481.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  482.      * A fragment less than or equal to a DAY field will return 0.</p>
  483.      *
  484.      * <ul>
  485.      *  <li>January 28, 2008 with Calendar.MONTH as fragment will return 28
  486.      *   (equivalent to deprecated date.getDay())</li>
  487.      *  <li>February 28, 2008 with Calendar.MONTH as fragment will return 28
  488.      *   (equivalent to deprecated date.getDay())</li>
  489.      *  <li>January 28, 2008 with Calendar.YEAR as fragment will return 28</li>
  490.      *  <li>February 28, 2008 with Calendar.YEAR as fragment will return 59</li>
  491.      *  <li>January 28, 2008 with Calendar.MILLISECOND as fragment will return 0
  492.      *   (a millisecond cannot be split in days)</li>
  493.      * </ul>
  494.      *
  495.      * @param date the date to work with, not null
  496.      * @param fragment the {@link Calendar} field part of date to calculate
  497.      * @return number of days  within the fragment of date
  498.      * @throws NullPointerException if the date is {@code null}
  499.      * @throws IllegalArgumentException if the fragment is not supported
  500.      * @since 2.4
  501.      */
  502.     public static long getFragmentInDays(final Date date, final int fragment) {
  503.         return getFragment(date, fragment, TimeUnit.DAYS);
  504.     }

  505.     /**
  506.      * Returns the number of hours within the
  507.      * fragment. All date fields greater than the fragment will be ignored.
  508.      *
  509.      * <p>Asking the hours of any date will only return the number of hours
  510.      * of the current day (resulting in a number between 0 and 23). This
  511.      * method will retrieve the number of hours for any fragment.
  512.      * For example, if you want to calculate the number of hours past this month,
  513.      * your fragment is Calendar.MONTH. The result will be all hours of the
  514.      * past day(s).</p>
  515.      *
  516.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  517.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  518.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  519.      * A fragment less than or equal to a HOUR field will return 0.</p>
  520.      *
  521.      * <ul>
  522.      *  <li>January 1, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 7
  523.      *   (equivalent to calendar.get(Calendar.HOUR_OF_DAY))</li>
  524.      *  <li>January 6, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 7
  525.      *   (equivalent to calendar.get(Calendar.HOUR_OF_DAY))</li>
  526.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 7</li>
  527.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 127 (5*24 + 7)</li>
  528.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  529.      *   (a millisecond cannot be split in hours)</li>
  530.      * </ul>
  531.      *
  532.      * @param calendar the calendar to work with, not null
  533.      * @param fragment the {@link Calendar} field part of calendar to calculate
  534.      * @return number of hours within the fragment of date
  535.      * @throws NullPointerException if the date is {@code null} or
  536.      * fragment is not supported
  537.      * @since 2.4
  538.      */
  539.     public static long getFragmentInHours(final Calendar calendar, final int fragment) {
  540.         return getFragment(calendar, fragment, TimeUnit.HOURS);
  541.     }

  542.     /**
  543.      * Returns the number of hours within the
  544.      * fragment. All date fields greater than the fragment will be ignored.
  545.      *
  546.      * <p>Asking the hours of any date will only return the number of hours
  547.      * of the current day (resulting in a number between 0 and 23). This
  548.      * method will retrieve the number of hours for any fragment.
  549.      * For example, if you want to calculate the number of hours past this month,
  550.      * your fragment is Calendar.MONTH. The result will be all hours of the
  551.      * past day(s).</p>
  552.      *
  553.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  554.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  555.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  556.      * A fragment less than or equal to a HOUR field will return 0.</p>
  557.      *
  558.      * <ul>
  559.      *  <li>January 1, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 7
  560.      *   (equivalent to deprecated date.getHours())</li>
  561.      *  <li>January 6, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 7
  562.      *   (equivalent to deprecated date.getHours())</li>
  563.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 7</li>
  564.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 127 (5*24 + 7)</li>
  565.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  566.      *   (a millisecond cannot be split in hours)</li>
  567.      * </ul>
  568.      *
  569.      * @param date the date to work with, not null
  570.      * @param fragment the {@link Calendar} field part of date to calculate
  571.      * @return number of hours within the fragment of date
  572.      * @throws NullPointerException if the date is {@code null}
  573.      * @throws IllegalArgumentException if the fragment is not supported
  574.      * @since 2.4
  575.      */
  576.     public static long getFragmentInHours(final Date date, final int fragment) {
  577.         return getFragment(date, fragment, TimeUnit.HOURS);
  578.     }

  579.     /**
  580.      * Returns the number of milliseconds within the
  581.      * fragment. All date fields greater than the fragment will be ignored.
  582.      *
  583.      * <p>Asking the milliseconds of any date will only return the number of milliseconds
  584.      * of the current second (resulting in a number between 0 and 999). This
  585.      * method will retrieve the number of milliseconds for any fragment.
  586.      * For example, if you want to calculate the number of seconds past today,
  587.      * your fragment is Calendar.DATE or Calendar.DAY_OF_YEAR. The result will
  588.      * be all seconds of the past hour(s), minutes(s) and second(s).</p>
  589.      *
  590.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  591.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  592.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  593.      * A fragment less than or equal to a MILLISECOND field will return 0.</p>
  594.      *
  595.      * <ul>
  596.      *  <li>January 1, 2008 7:15:10.538 with Calendar.SECOND as fragment will return 538
  597.      *   (equivalent to calendar.get(Calendar.MILLISECOND))</li>
  598.      *  <li>January 6, 2008 7:15:10.538 with Calendar.SECOND as fragment will return 538
  599.      *   (equivalent to calendar.get(Calendar.MILLISECOND))</li>
  600.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10538
  601.      *   (10*1000 + 538)</li>
  602.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  603.      *   (a millisecond cannot be split in milliseconds)</li>
  604.      * </ul>
  605.      *
  606.      * @param calendar the calendar to work with, not null
  607.      * @param fragment the {@link Calendar} field part of calendar to calculate
  608.      * @return number of milliseconds within the fragment of date
  609.      * @throws NullPointerException if the date is {@code null} or
  610.      * fragment is not supported
  611.      * @since 2.4
  612.      */
  613.   public static long getFragmentInMilliseconds(final Calendar calendar, final int fragment) {
  614.     return getFragment(calendar, fragment, TimeUnit.MILLISECONDS);
  615.   }

  616.     /**
  617.      * Returns the number of milliseconds within the
  618.      * fragment. All date fields greater than the fragment will be ignored.
  619.      *
  620.      * <p>Asking the milliseconds of any date will only return the number of milliseconds
  621.      * of the current second (resulting in a number between 0 and 999). This
  622.      * method will retrieve the number of milliseconds for any fragment.
  623.      * For example, if you want to calculate the number of milliseconds past today,
  624.      * your fragment is Calendar.DATE or Calendar.DAY_OF_YEAR. The result will
  625.      * be all milliseconds of the past hour(s), minutes(s) and second(s).</p>
  626.      *
  627.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  628.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  629.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  630.      * A fragment less than or equal to a SECOND field will return 0.</p>
  631.      *
  632.      * <ul>
  633.      *  <li>January 1, 2008 7:15:10.538 with Calendar.SECOND as fragment will return 538</li>
  634.      *  <li>January 6, 2008 7:15:10.538 with Calendar.SECOND as fragment will return 538</li>
  635.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10538 (10*1000 + 538)</li>
  636.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  637.      *   (a millisecond cannot be split in milliseconds)</li>
  638.      * </ul>
  639.      *
  640.      * @param date the date to work with, not null
  641.      * @param fragment the {@link Calendar} field part of date to calculate
  642.      * @return number of milliseconds within the fragment of date
  643.      * @throws NullPointerException if the date is {@code null}
  644.      * @throws IllegalArgumentException if the fragment is not supported
  645.      * @since 2.4
  646.      */
  647.     public static long getFragmentInMilliseconds(final Date date, final int fragment) {
  648.         return getFragment(date, fragment, TimeUnit.MILLISECONDS);
  649.     }

  650.     /**
  651.      * Returns the number of minutes within the
  652.      * fragment. All date fields greater than the fragment will be ignored.
  653.      *
  654.      * <p>Asking the minutes of any date will only return the number of minutes
  655.      * of the current hour (resulting in a number between 0 and 59). This
  656.      * method will retrieve the number of minutes for any fragment.
  657.      * For example, if you want to calculate the number of minutes past this month,
  658.      * your fragment is Calendar.MONTH. The result will be all minutes of the
  659.      * past day(s) and hour(s).</p>
  660.      *
  661.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  662.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  663.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  664.      * A fragment less than or equal to a MINUTE field will return 0.</p>
  665.      *
  666.      * <ul>
  667.      *  <li>January 1, 2008 7:15:10.538 with Calendar.HOUR_OF_DAY as fragment will return 15
  668.      *   (equivalent to calendar.get(Calendar.MINUTES))</li>
  669.      *  <li>January 6, 2008 7:15:10.538 with Calendar.HOUR_OF_DAY as fragment will return 15
  670.      *   (equivalent to calendar.get(Calendar.MINUTES))</li>
  671.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 15</li>
  672.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 435 (7*60 + 15)</li>
  673.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  674.      *   (a millisecond cannot be split in minutes)</li>
  675.      * </ul>
  676.      *
  677.      * @param calendar the calendar to work with, not null
  678.      * @param fragment the {@link Calendar} field part of calendar to calculate
  679.      * @return number of minutes within the fragment of date
  680.      * @throws NullPointerException if the date is {@code null} or
  681.      * fragment is not supported
  682.      * @since 2.4
  683.      */
  684.     public static long getFragmentInMinutes(final Calendar calendar, final int fragment) {
  685.         return getFragment(calendar, fragment, TimeUnit.MINUTES);
  686.     }

  687.     /**
  688.      * Returns the number of minutes within the
  689.      * fragment. All date fields greater than the fragment will be ignored.
  690.      *
  691.      * <p>Asking the minutes of any date will only return the number of minutes
  692.      * of the current hour (resulting in a number between 0 and 59). This
  693.      * method will retrieve the number of minutes for any fragment.
  694.      * For example, if you want to calculate the number of minutes past this month,
  695.      * your fragment is Calendar.MONTH. The result will be all minutes of the
  696.      * past day(s) and hour(s).</p>
  697.      *
  698.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  699.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  700.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  701.      * A fragment less than or equal to a MINUTE field will return 0.</p>
  702.      *
  703.      * <ul>
  704.      *  <li>January 1, 2008 7:15:10.538 with Calendar.HOUR_OF_DAY as fragment will return 15
  705.      *   (equivalent to deprecated date.getMinutes())</li>
  706.      *  <li>January 6, 2008 7:15:10.538 with Calendar.HOUR_OF_DAY as fragment will return 15
  707.      *   (equivalent to deprecated date.getMinutes())</li>
  708.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 15</li>
  709.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MONTH as fragment will return 435 (7*60 + 15)</li>
  710.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  711.      *   (a millisecond cannot be split in minutes)</li>
  712.      * </ul>
  713.      *
  714.      * @param date the date to work with, not null
  715.      * @param fragment the {@link Calendar} field part of date to calculate
  716.      * @return number of minutes within the fragment of date
  717.      * @throws NullPointerException if the date is {@code null}
  718.      * @throws IllegalArgumentException if the fragment is not supported
  719.      * @since 2.4
  720.      */
  721.     public static long getFragmentInMinutes(final Date date, final int fragment) {
  722.         return getFragment(date, fragment, TimeUnit.MINUTES);
  723.     }

  724.     /**
  725.      * Returns the number of seconds within the
  726.      * fragment. All date fields greater than the fragment will be ignored.
  727.      *
  728.      * <p>Asking the seconds of any date will only return the number of seconds
  729.      * of the current minute (resulting in a number between 0 and 59). This
  730.      * method will retrieve the number of seconds for any fragment.
  731.      * For example, if you want to calculate the number of seconds past today,
  732.      * your fragment is Calendar.DATE or Calendar.DAY_OF_YEAR. The result will
  733.      * be all seconds of the past hour(s) and minutes(s).</p>
  734.      *
  735.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  736.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  737.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  738.      * A fragment less than or equal to a SECOND field will return 0.</p>
  739.      *
  740.      * <ul>
  741.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10
  742.      *   (equivalent to calendar.get(Calendar.SECOND))</li>
  743.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10
  744.      *   (equivalent to calendar.get(Calendar.SECOND))</li>
  745.      *  <li>January 6, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 26110
  746.      *   (7*3600 + 15*60 + 10)</li>
  747.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  748.      *   (a millisecond cannot be split in seconds)</li>
  749.      * </ul>
  750.      *
  751.      * @param calendar the calendar to work with, not null
  752.      * @param fragment the {@link Calendar} field part of calendar to calculate
  753.      * @return number of seconds within the fragment of date
  754.      * @throws NullPointerException if the date is {@code null} or
  755.      * fragment is not supported
  756.      * @since 2.4
  757.      */
  758.     public static long getFragmentInSeconds(final Calendar calendar, final int fragment) {
  759.         return getFragment(calendar, fragment, TimeUnit.SECONDS);
  760.     }

  761.     /**
  762.      * Returns the number of seconds within the
  763.      * fragment. All date fields greater than the fragment will be ignored.
  764.      *
  765.      * <p>Asking the seconds of any date will only return the number of seconds
  766.      * of the current minute (resulting in a number between 0 and 59). This
  767.      * method will retrieve the number of seconds for any fragment.
  768.      * For example, if you want to calculate the number of seconds past today,
  769.      * your fragment is Calendar.DATE or Calendar.DAY_OF_YEAR. The result will
  770.      * be all seconds of the past hour(s) and minutes(s).</p>
  771.      *
  772.      * <p>Valid fragments are: Calendar.YEAR, Calendar.MONTH, both
  773.      * Calendar.DAY_OF_YEAR and Calendar.DATE, Calendar.HOUR_OF_DAY,
  774.      * Calendar.MINUTE, Calendar.SECOND and Calendar.MILLISECOND
  775.      * A fragment less than or equal to a SECOND field will return 0.</p>
  776.      *
  777.      * <ul>
  778.      *  <li>January 1, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10
  779.      *   (equivalent to deprecated date.getSeconds())</li>
  780.      *  <li>January 6, 2008 7:15:10.538 with Calendar.MINUTE as fragment will return 10
  781.      *   (equivalent to deprecated date.getSeconds())</li>
  782.      *  <li>January 6, 2008 7:15:10.538 with Calendar.DAY_OF_YEAR as fragment will return 26110
  783.      *   (7*3600 + 15*60 + 10)</li>
  784.      *  <li>January 16, 2008 7:15:10.538 with Calendar.MILLISECOND as fragment will return 0
  785.      *   (a millisecond cannot be split in seconds)</li>
  786.      * </ul>
  787.      *
  788.      * @param date the date to work with, not null
  789.      * @param fragment the {@link Calendar} field part of date to calculate
  790.      * @return number of seconds within the fragment of date
  791.      * @throws NullPointerException if the date is {@code null}
  792.      * @throws IllegalArgumentException if the fragment is not supported
  793.      * @since 2.4
  794.      */
  795.     public static long getFragmentInSeconds(final Date date, final int fragment) {
  796.         return getFragment(date, fragment, TimeUnit.SECONDS);
  797.     }

  798.     /**
  799.      * Checks if two calendar objects are on the same day ignoring time.
  800.      *
  801.      * <p>28 Mar 2002 13:45 and 28 Mar 2002 06:01 would return true.
  802.      * 28 Mar 2002 13:45 and 12 Mar 2002 13:45 would return false.
  803.      * </p>
  804.      *
  805.      * @param cal1  the first calendar, not altered, not null
  806.      * @param cal2  the second calendar, not altered, not null
  807.      * @return true if they represent the same day
  808.      * @throws NullPointerException if either calendar is {@code null}
  809.      * @since 2.1
  810.      */
  811.     public static boolean isSameDay(final Calendar cal1, final Calendar cal2) {
  812.         Objects.requireNonNull(cal1, "cal1");
  813.         Objects.requireNonNull(cal2, "cal2");
  814.         return cal1.get(Calendar.ERA) == cal2.get(Calendar.ERA) &&
  815.                 cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) &&
  816.                 cal1.get(Calendar.DAY_OF_YEAR) == cal2.get(Calendar.DAY_OF_YEAR);
  817.     }

  818.     /**
  819.      * Checks if two date objects are on the same day ignoring time.
  820.      *
  821.      * <p>28 Mar 2002 13:45 and 28 Mar 2002 06:01 would return true.
  822.      * 28 Mar 2002 13:45 and 12 Mar 2002 13:45 would return false.
  823.      * </p>
  824.      *
  825.      * @param date1  the first date, not altered, not null
  826.      * @param date2  the second date, not altered, not null
  827.      * @return true if they represent the same day
  828.      * @throws NullPointerException if either date is {@code null}
  829.      * @since 2.1
  830.      */
  831.     public static boolean isSameDay(final Date date1, final Date date2) {
  832.         return isSameDay(toCalendar(date1), toCalendar(date2));
  833.     }

  834.     /**
  835.      * Checks if two calendar objects represent the same instant in time.
  836.      *
  837.      * <p>This method compares the long millisecond time of the two objects.</p>
  838.      *
  839.      * @param cal1  the first calendar, not altered, not null
  840.      * @param cal2  the second calendar, not altered, not null
  841.      * @return true if they represent the same millisecond instant
  842.      * @throws NullPointerException if either date is {@code null}
  843.      * @since 2.1
  844.      */
  845.     public static boolean isSameInstant(final Calendar cal1, final Calendar cal2) {
  846.         Objects.requireNonNull(cal1, "cal1");
  847.         Objects.requireNonNull(cal2, "cal2");
  848.         return cal1.getTime().getTime() == cal2.getTime().getTime();
  849.     }

  850.     /**
  851.      * Checks if two date objects represent the same instant in time.
  852.      *
  853.      * <p>This method compares the long millisecond time of the two objects.</p>
  854.      *
  855.      * @param date1  the first date, not altered, not null
  856.      * @param date2  the second date, not altered, not null
  857.      * @return true if they represent the same millisecond instant
  858.      * @throws NullPointerException if either date is {@code null}
  859.      * @since 2.1
  860.      */
  861.     public static boolean isSameInstant(final Date date1, final Date date2) {
  862.         Objects.requireNonNull(date1, "date1");
  863.         Objects.requireNonNull(date2, "date2");
  864.         return date1.getTime() == date2.getTime();
  865.     }

  866.     /**
  867.      * Checks if two calendar objects represent the same local time.
  868.      *
  869.      * <p>This method compares the values of the fields of the two objects.
  870.      * In addition, both calendars must be the same of the same type.</p>
  871.      *
  872.      * @param cal1  the first calendar, not altered, not null
  873.      * @param cal2  the second calendar, not altered, not null
  874.      * @return true if they represent the same millisecond instant
  875.      * @throws NullPointerException if either date is {@code null}
  876.      * @since 2.1
  877.      */
  878.     public static boolean isSameLocalTime(final Calendar cal1, final Calendar cal2) {
  879.         Objects.requireNonNull(cal1, "cal1");
  880.         Objects.requireNonNull(cal2, "cal2");
  881.         return cal1.get(Calendar.MILLISECOND) == cal2.get(Calendar.MILLISECOND) &&
  882.                 cal1.get(Calendar.SECOND) == cal2.get(Calendar.SECOND) &&
  883.                 cal1.get(Calendar.MINUTE) == cal2.get(Calendar.MINUTE) &&
  884.                 cal1.get(Calendar.HOUR_OF_DAY) == cal2.get(Calendar.HOUR_OF_DAY) &&
  885.                 cal1.get(Calendar.DAY_OF_YEAR) == cal2.get(Calendar.DAY_OF_YEAR) &&
  886.                 cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) &&
  887.                 cal1.get(Calendar.ERA) == cal2.get(Calendar.ERA) &&
  888.                 cal1.getClass() == cal2.getClass();
  889.     }

  890.     /**
  891.      * Constructs an {@link Iterator} over each day in a date
  892.      * range defined by a focus date and range style.
  893.      *
  894.      * <p>For instance, passing Thursday, July 4, 2002 and a
  895.      * {@code RANGE_MONTH_SUNDAY} will return an {@link Iterator}
  896.      * that starts with Sunday, June 30, 2002 and ends with Saturday, August 3,
  897.      * 2002, returning a Calendar instance for each intermediate day.</p>
  898.      *
  899.      * <p>This method provides an iterator that returns Calendar objects.
  900.      * The days are progressed using {@link Calendar#add(int, int)}.</p>
  901.      *
  902.      * @param calendar  the date to work with, not null
  903.      * @param rangeStyle  the style constant to use. Must be one of
  904.      * {@link DateUtils#RANGE_MONTH_SUNDAY},
  905.      * {@link DateUtils#RANGE_MONTH_MONDAY},
  906.      * {@link DateUtils#RANGE_WEEK_SUNDAY},
  907.      * {@link DateUtils#RANGE_WEEK_MONDAY},
  908.      * {@link DateUtils#RANGE_WEEK_RELATIVE},
  909.      * {@link DateUtils#RANGE_WEEK_CENTER}
  910.      * @return the date iterator, not null
  911.      * @throws NullPointerException if calendar is {@code null}
  912.      * @throws IllegalArgumentException if the rangeStyle is invalid
  913.      */
  914.     public static Iterator<Calendar> iterator(final Calendar calendar, final int rangeStyle) {
  915.         Objects.requireNonNull(calendar, "calendar");
  916.         final Calendar start;
  917.         final Calendar end;
  918.         int startCutoff = Calendar.SUNDAY;
  919.         int endCutoff = Calendar.SATURDAY;
  920.         switch (rangeStyle) {
  921.             case RANGE_MONTH_SUNDAY:
  922.             case RANGE_MONTH_MONDAY:
  923.                 //Set start to the first of the month
  924.                 start = truncate(calendar, Calendar.MONTH);
  925.                 //Set end to the last of the month
  926.                 end = (Calendar) start.clone();
  927.                 end.add(Calendar.MONTH, 1);
  928.                 end.add(Calendar.DATE, -1);
  929.                 //Loop start back to the previous sunday or monday
  930.                 if (rangeStyle == RANGE_MONTH_MONDAY) {
  931.                     startCutoff = Calendar.MONDAY;
  932.                     endCutoff = Calendar.SUNDAY;
  933.                 }
  934.                 break;
  935.             case RANGE_WEEK_SUNDAY:
  936.             case RANGE_WEEK_MONDAY:
  937.             case RANGE_WEEK_RELATIVE:
  938.             case RANGE_WEEK_CENTER:
  939.                 //Set start and end to the current date
  940.                 start = truncate(calendar, Calendar.DATE);
  941.                 end = truncate(calendar, Calendar.DATE);
  942.                 switch (rangeStyle) {
  943.                     case RANGE_WEEK_SUNDAY:
  944.                         //already set by default
  945.                         break;
  946.                     case RANGE_WEEK_MONDAY:
  947.                         startCutoff = Calendar.MONDAY;
  948.                         endCutoff = Calendar.SUNDAY;
  949.                         break;
  950.                     case RANGE_WEEK_RELATIVE:
  951.                         startCutoff = calendar.get(Calendar.DAY_OF_WEEK);
  952.                         endCutoff = startCutoff - 1;
  953.                         break;
  954.                     case RANGE_WEEK_CENTER:
  955.                         startCutoff = calendar.get(Calendar.DAY_OF_WEEK) - 3;
  956.                         endCutoff = calendar.get(Calendar.DAY_OF_WEEK) + 3;
  957.                         break;
  958.                     default:
  959.                         break;
  960.                 }
  961.                 break;
  962.             default:
  963.                 throw new IllegalArgumentException("The range style " + rangeStyle + " is not valid.");
  964.         }
  965.         if (startCutoff < Calendar.SUNDAY) {
  966.             startCutoff += 7;
  967.         }
  968.         if (startCutoff > Calendar.SATURDAY) {
  969.             startCutoff -= 7;
  970.         }
  971.         if (endCutoff < Calendar.SUNDAY) {
  972.             endCutoff += 7;
  973.         }
  974.         if (endCutoff > Calendar.SATURDAY) {
  975.             endCutoff -= 7;
  976.         }
  977.         while (start.get(Calendar.DAY_OF_WEEK) != startCutoff) {
  978.             start.add(Calendar.DATE, -1);
  979.         }
  980.         while (end.get(Calendar.DAY_OF_WEEK) != endCutoff) {
  981.             end.add(Calendar.DATE, 1);
  982.         }
  983.         return new DateIterator(start, end);
  984.     }

  985.     /**
  986.      * Constructs an {@link Iterator} over each day in a date
  987.      * range defined by a focus date and range style.
  988.      *
  989.      * <p>For instance, passing Thursday, July 4, 2002 and a
  990.      * {@code RANGE_MONTH_SUNDAY} will return an {@link Iterator}
  991.      * that starts with Sunday, June 30, 2002 and ends with Saturday, August 3,
  992.      * 2002, returning a Calendar instance for each intermediate day.</p>
  993.      *
  994.      * <p>This method provides an iterator that returns Calendar objects.
  995.      * The days are progressed using {@link Calendar#add(int, int)}.</p>
  996.      *
  997.      * @param focus  the date to work with, not null
  998.      * @param rangeStyle  the style constant to use. Must be one of
  999.      * {@link DateUtils#RANGE_MONTH_SUNDAY},
  1000.      * {@link DateUtils#RANGE_MONTH_MONDAY},
  1001.      * {@link DateUtils#RANGE_WEEK_SUNDAY},
  1002.      * {@link DateUtils#RANGE_WEEK_MONDAY},
  1003.      * {@link DateUtils#RANGE_WEEK_RELATIVE},
  1004.      * {@link DateUtils#RANGE_WEEK_CENTER}
  1005.      * @return the date iterator, not null, not null
  1006.      * @throws NullPointerException if the date is {@code null}
  1007.      * @throws IllegalArgumentException if the rangeStyle is invalid
  1008.      */
  1009.     public static Iterator<Calendar> iterator(final Date focus, final int rangeStyle) {
  1010.         return iterator(toCalendar(focus), rangeStyle);
  1011.     }

  1012.     /**
  1013.      * Constructs an {@link Iterator} over each day in a date
  1014.      * range defined by a focus date and range style.
  1015.      *
  1016.      * <p>For instance, passing Thursday, July 4, 2002 and a
  1017.      * {@code RANGE_MONTH_SUNDAY} will return an {@link Iterator}
  1018.      * that starts with Sunday, June 30, 2002 and ends with Saturday, August 3,
  1019.      * 2002, returning a Calendar instance for each intermediate day.</p>
  1020.      *
  1021.      * @param calendar  the date to work with, either {@link Date} or {@link Calendar}, not null
  1022.      * @param rangeStyle  the style constant to use. Must be one of the range
  1023.      * styles listed for the {@link #iterator(Calendar, int)} method.
  1024.      * @return the date iterator, not null
  1025.      * @throws NullPointerException if the date is {@code null}
  1026.      * @throws ClassCastException if the object type is not a {@link Date} or {@link Calendar}
  1027.      */
  1028.     public static Iterator<?> iterator(final Object calendar, final int rangeStyle) {
  1029.         Objects.requireNonNull(calendar, "calendar");
  1030.         if (calendar instanceof Date) {
  1031.             return iterator((Date) calendar, rangeStyle);
  1032.         }
  1033.         if (calendar instanceof Calendar) {
  1034.             return iterator((Calendar) calendar, rangeStyle);
  1035.         }
  1036.         throw new ClassCastException("Could not iterate based on " + calendar);
  1037.     }

  1038.     /**
  1039.      * Internal calculation method.
  1040.      *
  1041.      * @param val  the calendar, not null
  1042.      * @param field  the field constant
  1043.      * @param modType  type to truncate, round or ceiling
  1044.      * @return the given calendar
  1045.      * @throws ArithmeticException if the year is over 280 million
  1046.      */
  1047.     private static Calendar modify(final Calendar val, final int field, final ModifyType modType) {
  1048.         if (val.get(Calendar.YEAR) > 280000000) {
  1049.             throw new ArithmeticException("Calendar value too large for accurate calculations");
  1050.         }

  1051.         if (field == Calendar.MILLISECOND) {
  1052.             return val;
  1053.         }

  1054.         // Fix for LANG-59 START
  1055.         // see https://issues.apache.org/jira/browse/LANG-59
  1056.         //
  1057.         // Manually truncate milliseconds, seconds and minutes, rather than using
  1058.         // Calendar methods.

  1059.         final Date date = val.getTime();
  1060.         long time = date.getTime();
  1061.         boolean done = false;

  1062.         // truncate milliseconds
  1063.         final int millisecs = val.get(Calendar.MILLISECOND);
  1064.         if (ModifyType.TRUNCATE == modType || millisecs < 500) {
  1065.             time -= millisecs;
  1066.         }
  1067.         if (field == Calendar.SECOND) {
  1068.             done = true;
  1069.         }

  1070.         // truncate seconds
  1071.         final int seconds = val.get(Calendar.SECOND);
  1072.         if (!done && (ModifyType.TRUNCATE == modType || seconds < 30)) {
  1073.             time = time - seconds * 1000L;
  1074.         }
  1075.         if (field == Calendar.MINUTE) {
  1076.             done = true;
  1077.         }

  1078.         // truncate minutes
  1079.         final int minutes = val.get(Calendar.MINUTE);
  1080.         if (!done && (ModifyType.TRUNCATE == modType || minutes < 30)) {
  1081.             time = time - minutes * 60000L;
  1082.         }

  1083.         // reset time
  1084.         if (date.getTime() != time) {
  1085.             date.setTime(time);
  1086.             val.setTime(date);
  1087.         }
  1088.         // Fix for LANG-59 END

  1089.         boolean roundUp = false;
  1090.         for (final int[] aField : fields) {
  1091.             for (final int element : aField) {
  1092.                 if (element == field) {
  1093.                     //This is our field... we stop looping
  1094.                     if (modType == ModifyType.CEILING || modType == ModifyType.ROUND && roundUp) {
  1095.                         if (field == SEMI_MONTH) {
  1096.                             //This is a special case that's hard to generalize
  1097.                             //If the date is 1, we round up to 16, otherwise
  1098.                             //  we subtract 15 days and add 1 month
  1099.                             if (val.get(Calendar.DATE) == 1) {
  1100.                                 val.add(Calendar.DATE, 15);
  1101.                             } else {
  1102.                                 val.add(Calendar.DATE, -15);
  1103.                                 val.add(Calendar.MONTH, 1);
  1104.                             }
  1105.                         // Fix for LANG-440 START
  1106.                         } else if (field == Calendar.AM_PM) {
  1107.                             // This is a special case
  1108.                             // If the time is 0, we round up to 12, otherwise
  1109.                             //  we subtract 12 hours and add 1 day
  1110.                             if (val.get(Calendar.HOUR_OF_DAY) == 0) {
  1111.                                 val.add(Calendar.HOUR_OF_DAY, 12);
  1112.                             } else {
  1113.                                 val.add(Calendar.HOUR_OF_DAY, -12);
  1114.                                 val.add(Calendar.DATE, 1);
  1115.                             }
  1116.                             // Fix for LANG-440 END
  1117.                         } else {
  1118.                             //We need at add one to this field since the
  1119.                             //  last number causes us to round up
  1120.                             val.add(aField[0], 1);
  1121.                         }
  1122.                     }
  1123.                     return val;
  1124.                 }
  1125.             }
  1126.             //We have various fields that are not easy roundings
  1127.             int offset = 0;
  1128.             boolean offsetSet = false;
  1129.             //These are special types of fields that require different rounding rules
  1130.             switch (field) {
  1131.                 case SEMI_MONTH:
  1132.                     if (aField[0] == Calendar.DATE) {
  1133.                         //If we're going to drop the DATE field's value,
  1134.                         //  we want to do this our own way.
  1135.                         //We need to subtract 1 since the date has a minimum of 1
  1136.                         offset = val.get(Calendar.DATE) - 1;
  1137.                         //If we're above 15 days adjustment, that means we're in the
  1138.                         //  bottom half of the month and should stay accordingly.
  1139.                         if (offset >= 15) {
  1140.                             offset -= 15;
  1141.                         }
  1142.                         //Record whether we're in the top or bottom half of that range
  1143.                         roundUp = offset > 7;
  1144.                         offsetSet = true;
  1145.                     }
  1146.                     break;
  1147.                 case Calendar.AM_PM:
  1148.                     if (aField[0] == Calendar.HOUR_OF_DAY) {
  1149.                         //If we're going to drop the HOUR field's value,
  1150.                         //  we want to do this our own way.
  1151.                         offset = val.get(Calendar.HOUR_OF_DAY);
  1152.                         if (offset >= 12) {
  1153.                             offset -= 12;
  1154.                         }
  1155.                         roundUp = offset >= 6;
  1156.                         offsetSet = true;
  1157.                     }
  1158.                     break;
  1159.                 default:
  1160.                     break;
  1161.             }
  1162.             if (!offsetSet) {
  1163.                 final int min = val.getActualMinimum(aField[0]);
  1164.                 final int max = val.getActualMaximum(aField[0]);
  1165.                 //Calculate the offset from the minimum allowed value
  1166.                 offset = val.get(aField[0]) - min;
  1167.                 //Set roundUp if this is more than halfway between the minimum and maximum
  1168.                 roundUp = offset > (max - min) / 2;
  1169.             }
  1170.             //We need to remove this field
  1171.             if (offset != 0) {
  1172.                 val.set(aField[0], val.get(aField[0]) - offset);
  1173.             }
  1174.         }
  1175.         throw new IllegalArgumentException("The field " + field + " is not supported");
  1176.     }

  1177.     /**
  1178.      * Parses a string representing a date by trying a variety of different parsers,
  1179.      * using the default date format symbols for the given locale.
  1180.      *
  1181.      * <p>The parse will try each parse pattern in turn.
  1182.      * A parse is only deemed successful if it parses the whole of the input string.
  1183.      * If no parse patterns match, a ParseException is thrown.</p>
  1184.      * The parser will be lenient toward the parsed date.
  1185.      *
  1186.      * @param str  the date to parse, not null
  1187.      * @param locale the locale whose date format symbols should be used. If {@code null},
  1188.      * the system locale is used (as per {@link #parseDate(String, String...)}).
  1189.      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
  1190.      * @return the parsed date
  1191.      * @throws NullPointerException if the date string or pattern array is null
  1192.      * @throws ParseException if none of the date patterns were suitable (or there were none)
  1193.      * @since 3.2
  1194.      */
  1195.     public static Date parseDate(final String str, final Locale locale, final String... parsePatterns) throws ParseException {
  1196.         return parseDateWithLeniency(str, locale, parsePatterns, true);
  1197.     }

  1198.     /**
  1199.      * Parses a string representing a date by trying a variety of different parsers.
  1200.      *
  1201.      * <p>The parse will try each parse pattern in turn.
  1202.      * A parse is only deemed successful if it parses the whole of the input string.
  1203.      * If no parse patterns match, a ParseException is thrown.</p>
  1204.      * The parser will be lenient toward the parsed date.
  1205.      *
  1206.      * @param str  the date to parse, not null
  1207.      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
  1208.      * @return the parsed date
  1209.      * @throws NullPointerException if the date string or pattern array is null
  1210.      * @throws ParseException if none of the date patterns were suitable (or there were none)
  1211.      */
  1212.     public static Date parseDate(final String str, final String... parsePatterns) throws ParseException {
  1213.         return parseDate(str, null, parsePatterns);
  1214.     }

  1215.     /**
  1216.      * Parses a string representing a date by trying a variety of different parsers,
  1217.      * using the default date format symbols for the given locale.
  1218.      *
  1219.      * <p>The parse will try each parse pattern in turn.
  1220.      * A parse is only deemed successful if it parses the whole of the input string.
  1221.      * If no parse patterns match, a ParseException is thrown.</p>
  1222.      * The parser parses strictly - it does not allow for dates such as "February 942, 1996".
  1223.      *
  1224.      * @param str  the date to parse, not null
  1225.      * @param locale the locale whose date format symbols should be used. If {@code null},
  1226.      * the system locale is used (as per {@link #parseDateStrictly(String, String...)}).
  1227.      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
  1228.      * @return the parsed date
  1229.      * @throws NullPointerException if the date string or pattern array is null
  1230.      * @throws ParseException if none of the date patterns were suitable
  1231.      * @since 3.2
  1232.      */
  1233.     public static Date parseDateStrictly(final String str, final Locale locale, final String... parsePatterns) throws ParseException {
  1234.         return parseDateWithLeniency(str, locale, parsePatterns, false);
  1235.     }

  1236.     /**
  1237.      * Parses a string representing a date by trying a variety of different parsers.
  1238.      *
  1239.      * <p>The parse will try each parse pattern in turn.
  1240.      * A parse is only deemed successful if it parses the whole of the input string.
  1241.      * If no parse patterns match, a ParseException is thrown.</p>
  1242.      * The parser parses strictly - it does not allow for dates such as "February 942, 1996".
  1243.      *
  1244.      * @param str  the date to parse, not null
  1245.      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
  1246.      * @return the parsed date
  1247.      * @throws NullPointerException if the date string or pattern array is null
  1248.      * @throws ParseException if none of the date patterns were suitable
  1249.      * @since 2.5
  1250.      */
  1251.     public static Date parseDateStrictly(final String str, final String... parsePatterns) throws ParseException {
  1252.         return parseDateStrictly(str, null, parsePatterns);
  1253.     }

  1254.     /**
  1255.      * Parses a string representing a date by trying a variety of different parsers.
  1256.      *
  1257.      * <p>The parse will try each parse pattern in turn.
  1258.      * A parse is only deemed successful if it parses the whole of the input string.
  1259.      * If no parse patterns match, a ParseException is thrown.</p>
  1260.      *
  1261.      * @param dateStr  the date to parse, not null
  1262.      * @param locale the locale to use when interpreting the pattern, can be null in which
  1263.      * case the default system locale is used
  1264.      * @param parsePatterns  the date format patterns to use, see SimpleDateFormat, not null
  1265.      * @param lenient Specify whether or not date/time parsing is to be lenient.
  1266.      * @return the parsed date
  1267.      * @throws NullPointerException if the date string or pattern array is null
  1268.      * @throws ParseException if none of the date patterns were suitable
  1269.      * @see java.util.Calendar#isLenient()
  1270.      */
  1271.     private static Date parseDateWithLeniency(final String dateStr, final Locale locale, final String[] parsePatterns,
  1272.         final boolean lenient) throws ParseException {
  1273.         Objects.requireNonNull(dateStr, "str");
  1274.         Objects.requireNonNull(parsePatterns, "parsePatterns");

  1275.         final TimeZone tz = TimeZone.getDefault();
  1276.         final Locale lcl = LocaleUtils.toLocale(locale);
  1277.         final ParsePosition pos = new ParsePosition(0);
  1278.         final Calendar calendar = Calendar.getInstance(tz, lcl);
  1279.         calendar.setLenient(lenient);

  1280.         for (final String parsePattern : parsePatterns) {
  1281.             final FastDateParser fdp = new FastDateParser(parsePattern, tz, lcl);
  1282.             calendar.clear();
  1283.             try {
  1284.                 if (fdp.parse(dateStr, pos, calendar) && pos.getIndex() == dateStr.length()) {
  1285.                     return calendar.getTime();
  1286.                 }
  1287.             } catch (final IllegalArgumentException ignored) {
  1288.                 // leniency is preventing calendar from being set
  1289.             }
  1290.             pos.setIndex(0);
  1291.         }
  1292.         throw new ParseException("Unable to parse the date: " + dateStr, -1);
  1293.     }

  1294.     /**
  1295.      * Rounds a date, leaving the field specified as the most
  1296.      * significant field.
  1297.      *
  1298.      * <p>For example, if you had the date-time of 28 Mar 2002
  1299.      * 13:45:01.231, if this was passed with HOUR, it would return
  1300.      * 28 Mar 2002 14:00:00.000. If this was passed with MONTH, it
  1301.      * would return 1 April 2002 0:00:00.000.</p>
  1302.      *
  1303.      * <p>For a date in a time zone that handles the change to daylight
  1304.      * saving time, rounding to Calendar.HOUR_OF_DAY will behave as follows.
  1305.      * Suppose daylight saving time begins at 02:00 on March 30. Rounding a
  1306.      * date that crosses this time would produce the following values:
  1307.      * </p>
  1308.      * <ul>
  1309.      * <li>March 30, 2003 01:10 rounds to March 30, 2003 01:00</li>
  1310.      * <li>March 30, 2003 01:40 rounds to March 30, 2003 03:00</li>
  1311.      * <li>March 30, 2003 02:10 rounds to March 30, 2003 03:00</li>
  1312.      * <li>March 30, 2003 02:40 rounds to March 30, 2003 04:00</li>
  1313.      * </ul>
  1314.      *
  1315.      * @param calendar  the date to work with, not null
  1316.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1317.      * @return the different rounded date, not null
  1318.      * @throws NullPointerException if the date is {@code null}
  1319.      * @throws ArithmeticException if the year is over 280 million
  1320.      */
  1321.     public static Calendar round(final Calendar calendar, final int field) {
  1322.         Objects.requireNonNull(calendar, "calendar");
  1323.         return modify((Calendar) calendar.clone(), field, ModifyType.ROUND);
  1324.     }

  1325.     /**
  1326.      * Rounds a date, leaving the field specified as the most
  1327.      * significant field.
  1328.      *
  1329.      * <p>For example, if you had the date-time of 28 Mar 2002
  1330.      * 13:45:01.231, if this was passed with HOUR, it would return
  1331.      * 28 Mar 2002 14:00:00.000. If this was passed with MONTH, it
  1332.      * would return 1 April 2002 0:00:00.000.</p>
  1333.      *
  1334.      * <p>For a date in a time zone that handles the change to daylight
  1335.      * saving time, rounding to Calendar.HOUR_OF_DAY will behave as follows.
  1336.      * Suppose daylight saving time begins at 02:00 on March 30. Rounding a
  1337.      * date that crosses this time would produce the following values:
  1338.      * </p>
  1339.      * <ul>
  1340.      * <li>March 30, 2003 01:10 rounds to March 30, 2003 01:00</li>
  1341.      * <li>March 30, 2003 01:40 rounds to March 30, 2003 03:00</li>
  1342.      * <li>March 30, 2003 02:10 rounds to March 30, 2003 03:00</li>
  1343.      * <li>March 30, 2003 02:40 rounds to March 30, 2003 04:00</li>
  1344.      * </ul>
  1345.      *
  1346.      * @param date  the date to work with, not null
  1347.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1348.      * @return the different rounded date, not null
  1349.      * @throws NullPointerException if the date is null
  1350.      * @throws ArithmeticException if the year is over 280 million
  1351.      */
  1352.     public static Date round(final Date date, final int field) {
  1353.         return modify(toCalendar(date), field, ModifyType.ROUND).getTime();
  1354.     }

  1355.     /**
  1356.      * Rounds a date, leaving the field specified as the most
  1357.      * significant field.
  1358.      *
  1359.      * <p>For example, if you had the date-time of 28 Mar 2002
  1360.      * 13:45:01.231, if this was passed with HOUR, it would return
  1361.      * 28 Mar 2002 14:00:00.000. If this was passed with MONTH, it
  1362.      * would return 1 April 2002 0:00:00.000.</p>
  1363.      *
  1364.      * <p>For a date in a time zone that handles the change to daylight
  1365.      * saving time, rounding to Calendar.HOUR_OF_DAY will behave as follows.
  1366.      * Suppose daylight saving time begins at 02:00 on March 30. Rounding a
  1367.      * date that crosses this time would produce the following values:
  1368.      * </p>
  1369.      * <ul>
  1370.      * <li>March 30, 2003 01:10 rounds to March 30, 2003 01:00</li>
  1371.      * <li>March 30, 2003 01:40 rounds to March 30, 2003 03:00</li>
  1372.      * <li>March 30, 2003 02:10 rounds to March 30, 2003 03:00</li>
  1373.      * <li>March 30, 2003 02:40 rounds to March 30, 2003 04:00</li>
  1374.      * </ul>
  1375.      *
  1376.      * @param date  the date to work with, either {@link Date} or {@link Calendar}, not null
  1377.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1378.      * @return the different rounded date, not null
  1379.      * @throws NullPointerException if the date is {@code null}
  1380.      * @throws ClassCastException if the object type is not a {@link Date} or {@link Calendar}
  1381.      * @throws ArithmeticException if the year is over 280 million
  1382.      */
  1383.     public static Date round(final Object date, final int field) {
  1384.         Objects.requireNonNull(date, "date");
  1385.         if (date instanceof Date) {
  1386.             return round((Date) date, field);
  1387.         }
  1388.         if (date instanceof Calendar) {
  1389.             return round((Calendar) date, field).getTime();
  1390.         }
  1391.         throw new ClassCastException("Could not round " + date);
  1392.     }

  1393.     /**
  1394.      * Sets the specified field to a date returning a new object.
  1395.      * This does not use a lenient calendar.
  1396.      * The original {@link Date} is unchanged.
  1397.      *
  1398.      * @param date  the date, not null
  1399.      * @param calendarField  the {@link Calendar} field to set the amount to
  1400.      * @param amount the amount to set
  1401.      * @return a new {@link Date} set with the specified value
  1402.      * @throws NullPointerException if the date is null
  1403.      * @since 2.4
  1404.      */
  1405.     private static Date set(final Date date, final int calendarField, final int amount) {
  1406.         validateDateNotNull(date);
  1407.         // getInstance() returns a new object, so this method is thread safe.
  1408.         final Calendar c = Calendar.getInstance();
  1409.         c.setLenient(false);
  1410.         c.setTime(date);
  1411.         c.set(calendarField, amount);
  1412.         return c.getTime();
  1413.     }

  1414.     /**
  1415.      * Sets the day of month field to a date returning a new object.
  1416.      * The original {@link Date} is unchanged.
  1417.      *
  1418.      * @param date  the date, not null
  1419.      * @param amount the amount to set
  1420.      * @return a new {@link Date} set with the specified value
  1421.      * @throws NullPointerException if the date is null
  1422.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1423.      *  {@code 1 <= amount <= 31}
  1424.      * @since 2.4
  1425.      */
  1426.     public static Date setDays(final Date date, final int amount) {
  1427.         return set(date, Calendar.DAY_OF_MONTH, amount);
  1428.     }

  1429.     /**
  1430.      * Sets the hours field to a date returning a new object.  Hours range
  1431.      * from  0-23.
  1432.      * The original {@link Date} is unchanged.
  1433.      *
  1434.      * @param date  the date, not null
  1435.      * @param amount the amount to set
  1436.      * @return a new {@link Date} set with the specified value
  1437.      * @throws NullPointerException if the date is null
  1438.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1439.      *  {@code 0 <= amount <= 23}
  1440.      * @since 2.4
  1441.      */
  1442.     public static Date setHours(final Date date, final int amount) {
  1443.         return set(date, Calendar.HOUR_OF_DAY, amount);
  1444.     }

  1445.     /**
  1446.      * Sets the milliseconds field to a date returning a new object.
  1447.      * The original {@link Date} is unchanged.
  1448.      *
  1449.      * @param date  the date, not null
  1450.      * @param amount the amount to set
  1451.      * @return a new {@link Date} set with the specified value
  1452.      * @throws NullPointerException if the date is null
  1453.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1454.      *  {@code 0 <= amount <= 999}
  1455.      * @since 2.4
  1456.      */
  1457.     public static Date setMilliseconds(final Date date, final int amount) {
  1458.         return set(date, Calendar.MILLISECOND, amount);
  1459.     }

  1460.     /**
  1461.      * Sets the minute field to a date returning a new object.
  1462.      * The original {@link Date} is unchanged.
  1463.      *
  1464.      * @param date  the date, not null
  1465.      * @param amount the amount to set
  1466.      * @return a new {@link Date} set with the specified value
  1467.      * @throws NullPointerException if the date is null
  1468.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1469.      *  {@code 0 <= amount <= 59}
  1470.      * @since 2.4
  1471.      */
  1472.     public static Date setMinutes(final Date date, final int amount) {
  1473.         return set(date, Calendar.MINUTE, amount);
  1474.     }

  1475.     /**
  1476.      * Sets the months field to a date returning a new object.
  1477.      * The original {@link Date} is unchanged.
  1478.      *
  1479.      * @param date  the date, not null
  1480.      * @param amount the amount to set
  1481.      * @return a new {@link Date} set with the specified value
  1482.      * @throws NullPointerException if the date is null
  1483.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1484.      *  {@code 0 <= amount <= 11}
  1485.      * @since 2.4
  1486.      */
  1487.     public static Date setMonths(final Date date, final int amount) {
  1488.         return set(date, Calendar.MONTH, amount);
  1489.     }

  1490.     /**
  1491.      * Sets the seconds field to a date returning a new object.
  1492.      * The original {@link Date} is unchanged.
  1493.      *
  1494.      * @param date  the date, not null
  1495.      * @param amount the amount to set
  1496.      * @return a new {@link Date} set with the specified value
  1497.      * @throws NullPointerException if the date is null
  1498.      * @throws IllegalArgumentException if {@code amount} is not in the range
  1499.      *  {@code 0 <= amount <= 59}
  1500.      * @since 2.4
  1501.      */
  1502.     public static Date setSeconds(final Date date, final int amount) {
  1503.         return set(date, Calendar.SECOND, amount);
  1504.     }
  1505.     /**
  1506.      * Sets the years field to a date returning a new object.
  1507.      * The original {@link Date} is unchanged.
  1508.      *
  1509.      * @param date  the date, not null
  1510.      * @param amount the amount to set
  1511.      * @return a new {@link Date} set with the specified value
  1512.      * @throws NullPointerException if the date is null
  1513.      * @since 2.4
  1514.      */
  1515.     public static Date setYears(final Date date, final int amount) {
  1516.         return set(date, Calendar.YEAR, amount);
  1517.     }

  1518.     /**
  1519.      * Converts a {@link Date} into a {@link Calendar}.
  1520.      *
  1521.      * @param date the date to convert to a Calendar
  1522.      * @return the created Calendar
  1523.      * @throws NullPointerException if null is passed in
  1524.      * @since 3.0
  1525.      */
  1526.     public static Calendar toCalendar(final Date date) {
  1527.         final Calendar c = Calendar.getInstance();
  1528.         c.setTime(Objects.requireNonNull(date, "date"));
  1529.         return c;
  1530.     }

  1531.     /**
  1532.      * Converts a {@link Date} of a given {@link TimeZone} into a {@link Calendar}
  1533.      * @param date the date to convert to a Calendar
  1534.      * @param tz the time zone of the {@code date}
  1535.      * @return the created Calendar
  1536.      * @throws NullPointerException if {@code date} or {@code tz} is null
  1537.      */
  1538.     public static Calendar toCalendar(final Date date, final TimeZone tz) {
  1539.         final Calendar c = Calendar.getInstance(tz);
  1540.         c.setTime(Objects.requireNonNull(date, "date"));
  1541.         return c;
  1542.     }

  1543.     /**
  1544.      * Truncates a date, leaving the field specified as the most
  1545.      * significant field.
  1546.      *
  1547.      * <p>For example, if you had the date-time of 28 Mar 2002
  1548.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  1549.      * 2002 13:00:00.000.  If this was passed with MONTH, it would
  1550.      * return 1 Mar 2002 0:00:00.000.</p>
  1551.      *
  1552.      * @param date  the date to work with, not null
  1553.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1554.      * @return the different truncated date, not null
  1555.      * @throws NullPointerException if the date is {@code null}
  1556.      * @throws ArithmeticException if the year is over 280 million
  1557.      */
  1558.     public static Calendar truncate(final Calendar date, final int field) {
  1559.         Objects.requireNonNull(date, "date");
  1560.         return modify((Calendar) date.clone(), field, ModifyType.TRUNCATE);
  1561.     }

  1562.     /**
  1563.      * Truncates a date, leaving the field specified as the most
  1564.      * significant field.
  1565.      *
  1566.      * <p>For example, if you had the date-time of 28 Mar 2002
  1567.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  1568.      * 2002 13:00:00.000.  If this was passed with MONTH, it would
  1569.      * return 1 Mar 2002 0:00:00.000.</p>
  1570.      *
  1571.      * @param date  the date to work with, not null
  1572.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1573.      * @return the different truncated date, not null
  1574.      * @throws NullPointerException if the date is {@code null}
  1575.      * @throws ArithmeticException if the year is over 280 million
  1576.      */
  1577.     public static Date truncate(final Date date, final int field) {
  1578.         return modify(toCalendar(date), field, ModifyType.TRUNCATE).getTime();
  1579.     }

  1580.     /**
  1581.      * Truncates a date, leaving the field specified as the most
  1582.      * significant field.
  1583.      *
  1584.      * <p>For example, if you had the date-time of 28 Mar 2002
  1585.      * 13:45:01.231, if you passed with HOUR, it would return 28 Mar
  1586.      * 2002 13:00:00.000.  If this was passed with MONTH, it would
  1587.      * return 1 Mar 2002 0:00:00.000.</p>
  1588.      *
  1589.      * @param date  the date to work with, either {@link Date} or {@link Calendar}, not null
  1590.      * @param field  the field from {@link Calendar} or {@code SEMI_MONTH}
  1591.      * @return the different truncated date, not null
  1592.      * @throws NullPointerException if the date is {@code null}
  1593.      * @throws ClassCastException if the object type is not a {@link Date} or {@link Calendar}
  1594.      * @throws ArithmeticException if the year is over 280 million
  1595.      */
  1596.     public static Date truncate(final Object date, final int field) {
  1597.         Objects.requireNonNull(date, "date");
  1598.         if (date instanceof Date) {
  1599.             return truncate((Date) date, field);
  1600.         }
  1601.         if (date instanceof Calendar) {
  1602.             return truncate((Calendar) date, field).getTime();
  1603.         }
  1604.         throw new ClassCastException("Could not truncate " + date);
  1605.     }

  1606.     /**
  1607.      * Determines how two calendars compare up to no more than the specified
  1608.      * most significant field.
  1609.      *
  1610.      * @param cal1 the first calendar, not {@code null}
  1611.      * @param cal2 the second calendar, not {@code null}
  1612.      * @param field the field from {@link Calendar}
  1613.      * @return a negative integer, zero, or a positive integer as the first
  1614.      * calendar is less than, equal to, or greater than the second.
  1615.      * @throws NullPointerException if any argument is {@code null}
  1616.      * @see #truncate(Calendar, int)
  1617.      * @see #truncatedCompareTo(Date, Date, int)
  1618.      * @since 3.0
  1619.      */
  1620.     public static int truncatedCompareTo(final Calendar cal1, final Calendar cal2, final int field) {
  1621.         final Calendar truncatedCal1 = truncate(cal1, field);
  1622.         final Calendar truncatedCal2 = truncate(cal2, field);
  1623.         return truncatedCal1.compareTo(truncatedCal2);
  1624.     }

  1625.     /**
  1626.      * Determines how two dates compare up to no more than the specified
  1627.      * most significant field.
  1628.      *
  1629.      * @param date1 the first date, not {@code null}
  1630.      * @param date2 the second date, not {@code null}
  1631.      * @param field the field from {@link Calendar}
  1632.      * @return a negative integer, zero, or a positive integer as the first
  1633.      * date is less than, equal to, or greater than the second.
  1634.      * @throws NullPointerException if any argument is {@code null}
  1635.      * @see #truncate(Calendar, int)
  1636.      * @see #truncatedCompareTo(Date, Date, int)
  1637.      * @since 3.0
  1638.      */
  1639.     public static int truncatedCompareTo(final Date date1, final Date date2, final int field) {
  1640.         final Date truncatedDate1 = truncate(date1, field);
  1641.         final Date truncatedDate2 = truncate(date2, field);
  1642.         return truncatedDate1.compareTo(truncatedDate2);
  1643.     }

  1644.     /**
  1645.      * Determines if two calendars are equal up to no more than the specified
  1646.      * most significant field.
  1647.      *
  1648.      * @param cal1 the first calendar, not {@code null}
  1649.      * @param cal2 the second calendar, not {@code null}
  1650.      * @param field the field from {@link Calendar}
  1651.      * @return {@code true} if equal; otherwise {@code false}
  1652.      * @throws NullPointerException if any argument is {@code null}
  1653.      * @see #truncate(Calendar, int)
  1654.      * @see #truncatedEquals(Date, Date, int)
  1655.      * @since 3.0
  1656.      */
  1657.     public static boolean truncatedEquals(final Calendar cal1, final Calendar cal2, final int field) {
  1658.         return truncatedCompareTo(cal1, cal2, field) == 0;
  1659.     }

  1660.     /**
  1661.      * Determines if two dates are equal up to no more than the specified
  1662.      * most significant field.
  1663.      *
  1664.      * @param date1 the first date, not {@code null}
  1665.      * @param date2 the second date, not {@code null}
  1666.      * @param field the field from {@link Calendar}
  1667.      * @return {@code true} if equal; otherwise {@code false}
  1668.      * @throws NullPointerException if any argument is {@code null}
  1669.      * @see #truncate(Date, int)
  1670.      * @see #truncatedEquals(Calendar, Calendar, int)
  1671.      * @since 3.0
  1672.      */
  1673.     public static boolean truncatedEquals(final Date date1, final Date date2, final int field) {
  1674.         return truncatedCompareTo(date1, date2, field) == 0;
  1675.     }

  1676.     /**
  1677.      * @param date Date to validate.
  1678.      * @throws NullPointerException if {@code date == null}
  1679.      */
  1680.     private static void validateDateNotNull(final Date date) {
  1681.         Objects.requireNonNull(date, "date");
  1682.     }

  1683.     /**
  1684.      * {@link DateUtils} instances should NOT be constructed in
  1685.      * standard programming. Instead, the static methods on the class should
  1686.      * be used, such as {@code DateUtils.parseDate(str);}.
  1687.      *
  1688.      * <p>This constructor is public to permit tools that require a JavaBean
  1689.      * instance to operate.</p>
  1690.      *
  1691.      * @deprecated TODO Make private in 4.0.
  1692.      */
  1693.     @Deprecated
  1694.     public DateUtils() {
  1695.         // empty
  1696.     }

  1697. }