Uses of Class
org.joda.time.Days

Packages that use Days
Package
Description
Provides support for dates, times, time zones, durations, intervals, and partials.
  • Uses of Days in org.joda.time

    Fields in org.joda.time declared as Days
    Modifier and Type
    Field
    Description
    static final Days
    Days.FIVE
    Constant representing five days.
    static final Days
    Days.FOUR
    Constant representing four days.
    static final Days
    Constant representing the maximum number of days that can be stored in this object.
    static final Days
    Constant representing the minimum number of days that can be stored in this object.
    static final Days
    Days.ONE
    Constant representing one day.
    static final Days
    Days.SEVEN
    Constant representing seven days.
    static final Days
    Days.SIX
    Constant representing six days.
    static final Days
    Days.THREE
    Constant representing three days.
    static final Days
    Days.TWO
    Constant representing two days.
    static final Days
    Days.ZERO
    Constant representing zero days.
    Methods in org.joda.time that return Days
    Modifier and Type
    Method
    Description
    static Days
    Days.days(int days)
    Obtains an instance of Days that may be cached.
    static Days
    Creates a Days representing the number of whole days between the two specified datetimes.
    static Days
    Creates a Days representing the number of whole days between the two specified partial datetimes.
    static Days
    Days.daysIn(ReadableInterval interval)
    Creates a Days representing the number of whole days in the specified interval.
    Days.dividedBy(int divisor)
    Returns a new instance with the days divided by the specified divisor.
    Days.minus(int days)
    Returns a new instance with the specified number of days taken away.
    Days.minus(Days days)
    Returns a new instance with the specified number of days taken away.
    Days.multipliedBy(int scalar)
    Returns a new instance with the days multiplied by the specified scalar.
    Days.negated()
    Returns a new instance with the days value negated.
    static Days
    Days.parseDays(String periodStr)
    Creates a new Days by parsing a string in the ISO8601 format 'PnD'.
    Days.plus(int days)
    Returns a new instance with the specified number of days added.
    Days.plus(Days days)
    Returns a new instance with the specified number of days added.
    static Days
    Creates a new Days representing the number of complete standard length days in the specified period.
    Duration.toStandardDays()
    Converts this duration to a period in days assuming that there are the standard number of milliseconds in a day.
    Converts this period in hours to a period in days assuming a 24 hour day.
    Minutes.toStandardDays()
    Converts this period in minutes to a period in days assuming a 24 hour day and 60 minute hour.
    Converts this period to a period in days assuming a 7 day week, 24 hour day, 60 minute hour and 60 second minute.
    Seconds.toStandardDays()
    Converts this period in seconds to a period in days assuming a 24 hour day, 60 minute hour and 60 second minute.
    Converts this period in weeks to a period in days assuming a 7 day week.
    Methods in org.joda.time with parameters of type Days
    Modifier and Type
    Method
    Description
    boolean
    Days.isGreaterThan(Days other)
    Is this days instance greater than the specified number of days.
    boolean
    Days.isLessThan(Days other)
    Is this days instance less than the specified number of days.
    Days.minus(Days days)
    Returns a new instance with the specified number of days taken away.
    Days.plus(Days days)
    Returns a new instance with the specified number of days added.