Java Code Examples for org.joda.time.base.BaseSingleFieldPeriod#between()
The following examples show how to use
org.joda.time.base.BaseSingleFieldPeriod#between() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestBaseSingleFieldPeriod.java From astor with GNU General Public License v2.0 | 4 votes |
public static int between(ReadableInstant start, ReadableInstant end, DurationFieldType field) { return BaseSingleFieldPeriod.between(start, end, field); }
Example 2
Source File: TestBaseSingleFieldPeriod.java From astor with GNU General Public License v2.0 | 4 votes |
public static int between(ReadableInstant start, ReadableInstant end, DurationFieldType field) { return BaseSingleFieldPeriod.between(start, end, field); }
Example 3
Source File: TestBaseSingleFieldPeriod.java From astor with GNU General Public License v2.0 | 4 votes |
public static int between(ReadablePartial start, ReadablePartial end, ReadablePeriod zeroInstance) { return BaseSingleFieldPeriod.between(start, end, zeroInstance); }
Example 4
Source File: Minutes.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Minutes</code> representing the number of whole minutes * between the two specified partial datetimes. * <p> * The two partials must contain the same fields, for example you can specify * two <code>LocalTime</code> objects. * * @param start the start partial date, must not be null * @param end the end partial date, must not be null * @return the period in minutes * @throws IllegalArgumentException if the partials are null or invalid */ public static Minutes minutesBetween(ReadablePartial start, ReadablePartial end) { if (start instanceof LocalTime && end instanceof LocalTime) { Chronology chrono = DateTimeUtils.getChronology(start.getChronology()); int minutes = chrono.minutes().getDifference( ((LocalTime) end).getLocalMillis(), ((LocalTime) start).getLocalMillis()); return Minutes.minutes(minutes); } int amount = BaseSingleFieldPeriod.between(start, end, ZERO); return Minutes.minutes(amount); }
Example 5
Source File: Hours.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Hours</code> representing the number of whole hours * in the specified interval. * * @param interval the interval to extract hours from, null returns zero * @return the period in hours * @throws IllegalArgumentException if the partials are null or invalid */ public static Hours hoursIn(ReadableInterval interval) { if (interval == null) { return Hours.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.hours()); return Hours.hours(amount); }
Example 6
Source File: Hours.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Hours</code> representing the number of whole hours * between the two specified partial datetimes. * <p> * The two partials must contain the same fields, for example you can specify * two <code>LocalTime</code> objects. * * @param start the start partial date, must not be null * @param end the end partial date, must not be null * @return the period in hours * @throws IllegalArgumentException if the partials are null or invalid */ public static Hours hoursBetween(ReadablePartial start, ReadablePartial end) { if (start instanceof LocalTime && end instanceof LocalTime) { Chronology chrono = DateTimeUtils.getChronology(start.getChronology()); int hours = chrono.hours().getDifference( ((LocalTime) end).getLocalMillis(), ((LocalTime) start).getLocalMillis()); return Hours.hours(hours); } int amount = BaseSingleFieldPeriod.between(start, end, ZERO); return Hours.hours(amount); }
Example 7
Source File: Months.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Months</code> representing the number of whole months * in the specified interval. This method corectly handles any daylight * savings time changes that may occur during the interval. * * @param interval the interval to extract months from, null returns zero * @return the period in months * @throws IllegalArgumentException if the partials are null or invalid */ public static Months monthsIn(ReadableInterval interval) { if (interval == null) { return Months.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.months()); return Months.months(amount); }
Example 8
Source File: Seconds.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Seconds</code> representing the number of whole seconds * in the specified interval. * * @param interval the interval to extract seconds from, null returns zero * @return the period in seconds * @throws IllegalArgumentException if the partials are null or invalid */ public static Seconds secondsIn(ReadableInterval interval) { if (interval == null) { return Seconds.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.seconds()); return Seconds.seconds(amount); }
Example 9
Source File: Days.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Days</code> representing the number of whole days * in the specified interval. This method corectly handles any daylight * savings time changes that may occur during the interval. * * @param interval the interval to extract days from, null returns zero * @return the period in days * @throws IllegalArgumentException if the partials are null or invalid */ public static Days daysIn(ReadableInterval interval) { if (interval == null) { return Days.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.days()); return Days.days(amount); }
Example 10
Source File: Hours.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Hours</code> representing the number of whole hours * between the two specified partial datetimes. * <p> * The two partials must contain the same fields, for example you can specify * two <code>LocalTime</code> objects. * * @param start the start partial date, must not be null * @param end the end partial date, must not be null * @return the period in hours * @throws IllegalArgumentException if the partials are null or invalid */ public static Hours hoursBetween(ReadablePartial start, ReadablePartial end) { if (start instanceof LocalTime && end instanceof LocalTime) { Chronology chrono = DateTimeUtils.getChronology(start.getChronology()); int hours = chrono.hours().getDifference( ((LocalTime) end).getLocalMillis(), ((LocalTime) start).getLocalMillis()); return Hours.hours(hours); } int amount = BaseSingleFieldPeriod.between(start, end, ZERO); return Hours.hours(amount); }
Example 11
Source File: Years.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Years</code> representing the number of whole years * in the specified interval. This method corectly handles any daylight * savings time changes that may occur during the interval. * * @param interval the interval to extract years from, null returns zero * @return the period in years * @throws IllegalArgumentException if the partials are null or invalid */ public static Years yearsIn(ReadableInterval interval) { if (interval == null) { return Years.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.years()); return Years.years(amount); }
Example 12
Source File: Minutes.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Minutes</code> representing the number of whole minutes * between the two specified partial datetimes. * <p> * The two partials must contain the same fields, for example you can specify * two <code>LocalTime</code> objects. * * @param start the start partial date, must not be null * @param end the end partial date, must not be null * @return the period in minutes * @throws IllegalArgumentException if the partials are null or invalid */ public static Minutes minutesBetween(ReadablePartial start, ReadablePartial end) { if (start instanceof LocalTime && end instanceof LocalTime) { Chronology chrono = DateTimeUtils.getChronology(start.getChronology()); int minutes = chrono.minutes().getDifference( ((LocalTime) end).getLocalMillis(), ((LocalTime) start).getLocalMillis()); return Minutes.minutes(minutes); } int amount = BaseSingleFieldPeriod.between(start, end, ZERO); return Minutes.minutes(amount); }
Example 13
Source File: Weeks.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Weeks</code> representing the number of whole weeks * in the specified interval. * * @param interval the interval to extract weeks from, null returns zero * @return the period in weeks * @throws IllegalArgumentException if the partials are null or invalid */ public static Weeks weeksIn(ReadableInterval interval) { if (interval == null) { return Weeks.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.weeks()); return Weeks.weeks(amount); }
Example 14
Source File: Weeks.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Weeks</code> representing the number of whole weeks * in the specified interval. * * @param interval the interval to extract weeks from, null returns zero * @return the period in weeks * @throws IllegalArgumentException if the partials are null or invalid */ public static Weeks weeksIn(ReadableInterval interval) { if (interval == null) { return Weeks.ZERO; } int amount = BaseSingleFieldPeriod.between(interval.getStart(), interval.getEnd(), DurationFieldType.weeks()); return Weeks.weeks(amount); }
Example 15
Source File: Weeks.java From astor with GNU General Public License v2.0 | 3 votes |
/** * Creates a <code>Weeks</code> representing the number of whole weeks * between the two specified partial datetimes. * <p> * The two partials must contain the same fields, for example you can specify * two <code>LocalDate</code> objects. * * @param start the start partial date, must not be null * @param end the end partial date, must not be null * @return the period in weeks * @throws IllegalArgumentException if the partials are null or invalid */ public static Weeks weeksBetween(ReadablePartial start, ReadablePartial end) { if (start instanceof LocalDate && end instanceof LocalDate) { Chronology chrono = DateTimeUtils.getChronology(start.getChronology()); int weeks = chrono.weeks().getDifference( ((LocalDate) end).getLocalMillis(), ((LocalDate) start).getLocalMillis()); return Weeks.weeks(weeks); } int amount = BaseSingleFieldPeriod.between(start, end, ZERO); return Weeks.weeks(amount); }
Example 16
Source File: Hours.java From astor with GNU General Public License v2.0 | 2 votes |
/** * Creates a <code>Hours</code> representing the number of whole hours * between the two specified datetimes. * * @param start the start instant, must not be null * @param end the end instant, must not be null * @return the period in hours * @throws IllegalArgumentException if the instants are null or invalid */ public static Hours hoursBetween(ReadableInstant start, ReadableInstant end) { int amount = BaseSingleFieldPeriod.between(start, end, DurationFieldType.hours()); return Hours.hours(amount); }
Example 17
Source File: Hours.java From astor with GNU General Public License v2.0 | 2 votes |
/** * Creates a <code>Hours</code> representing the number of whole hours * between the two specified datetimes. * * @param start the start instant, must not be null * @param end the end instant, must not be null * @return the period in hours * @throws IllegalArgumentException if the instants are null or invalid */ public static Hours hoursBetween(ReadableInstant start, ReadableInstant end) { int amount = BaseSingleFieldPeriod.between(start, end, DurationFieldType.hours()); return Hours.hours(amount); }
Example 18
Source File: Weeks.java From astor with GNU General Public License v2.0 | 2 votes |
/** * Creates a <code>Weeks</code> representing the number of whole weeks * between the two specified datetimes. * * @param start the start instant, must not be null * @param end the end instant, must not be null * @return the period in weeks * @throws IllegalArgumentException if the instants are null or invalid */ public static Weeks weeksBetween(ReadableInstant start, ReadableInstant end) { int amount = BaseSingleFieldPeriod.between(start, end, DurationFieldType.weeks()); return Weeks.weeks(amount); }
Example 19
Source File: Years.java From astor with GNU General Public License v2.0 | 2 votes |
/** * Creates a <code>Years</code> representing the number of whole years * between the two specified datetimes. This method corectly handles * any daylight savings time changes that may occur during the interval. * * @param start the start instant, must not be null * @param end the end instant, must not be null * @return the period in years * @throws IllegalArgumentException if the instants are null or invalid */ public static Years yearsBetween(ReadableInstant start, ReadableInstant end) { int amount = BaseSingleFieldPeriod.between(start, end, DurationFieldType.years()); return Years.years(amount); }
Example 20
Source File: Days.java From astor with GNU General Public License v2.0 | 2 votes |
/** * Creates a <code>Days</code> representing the number of whole days * between the two specified datetimes. This method corectly handles * any daylight savings time changes that may occur during the interval. * * @param start the start instant, must not be null * @param end the end instant, must not be null * @return the period in days * @throws IllegalArgumentException if the instants are null or invalid */ public static Days daysBetween(ReadableInstant start, ReadableInstant end) { int amount = BaseSingleFieldPeriod.between(start, end, DurationFieldType.days()); return Days.days(amount); }