Whitespace
This commit is contained in:
parent
90a5e8ad37
commit
144b86a7cc
|
@ -131,24 +131,28 @@ public class DateUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of milliseconds in a standard second.
|
* Number of milliseconds in a standard second.
|
||||||
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final long MILLIS_PER_SECOND = 1_000;
|
public static final long MILLIS_PER_SECOND = 1_000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of milliseconds in a standard minute.
|
* Number of milliseconds in a standard minute.
|
||||||
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND;
|
public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of milliseconds in a standard hour.
|
* Number of milliseconds in a standard hour.
|
||||||
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE;
|
public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of milliseconds in a standard day.
|
* Number of milliseconds in a standard day.
|
||||||
|
*
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR;
|
public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR;
|
||||||
|
@ -173,14 +177,17 @@ public class DateUtils {
|
||||||
* A week range, starting on Sunday.
|
* A week range, starting on Sunday.
|
||||||
*/
|
*/
|
||||||
public static final int RANGE_WEEK_SUNDAY = 1;
|
public static final int RANGE_WEEK_SUNDAY = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A week range, starting on Monday.
|
* A week range, starting on Monday.
|
||||||
*/
|
*/
|
||||||
public static final int RANGE_WEEK_MONDAY = 2;
|
public static final int RANGE_WEEK_MONDAY = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A week range, starting on the day focused.
|
* A week range, starting on the day focused.
|
||||||
*/
|
*/
|
||||||
public static final int RANGE_WEEK_RELATIVE = 3;
|
public static final int RANGE_WEEK_RELATIVE = 3;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A week range, centered around the day focused.
|
* A week range, centered around the day focused.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue