Uses of Class
org.joda.time.TimeOfDay

Packages that use TimeOfDay
org.joda.time Provides support for dates, times, time zones, durations, intervals, and partials. 
 

Uses of TimeOfDay in org.joda.time
 

Fields in org.joda.time declared as TimeOfDay
static TimeOfDay TimeOfDay.MIDNIGHT
          Constant for midnight.
 

Methods in org.joda.time that return TimeOfDay
 TimeOfDay DateTime.toTimeOfDay()
          Converts this object to a TimeOfDay using the same millis and chronology.
 TimeOfDay TimeOfDay.Property.getTimeOfDay()
          Gets the partial that this property belongs to.
 TimeOfDay TimeOfDay.Property.addToCopy(int valueToAdd)
          Adds to the value of this field in a copy of this TimeOfDay, wrapping to what would be the next day if necessary.
 TimeOfDay TimeOfDay.Property.addNoWrapToCopy(int valueToAdd)
          Adds to the value of this field in a copy of this TimeOfDay, throwing an Exception if the bounds are exceeded.
 TimeOfDay TimeOfDay.Property.addWrapFieldToCopy(int valueToAdd)
          Adds to the value of this field in a copy of this TimeOfDay wrapping within this field if the maximum value is reached.
 TimeOfDay TimeOfDay.Property.setCopy(int value)
          Sets this field in a copy of the TimeOfDay.
 TimeOfDay TimeOfDay.Property.setCopy(String text, Locale locale)
          Sets this field in a copy of the TimeOfDay to a parsed text value.
 TimeOfDay TimeOfDay.Property.setCopy(String text)
          Sets this field in a copy of the TimeOfDay to a parsed text value.
 TimeOfDay TimeOfDay.Property.withMaximumValue()
          Returns a new TimeOfDay with this field set to the maximum value for this field.
 TimeOfDay TimeOfDay.Property.withMinimumValue()
          Returns a new TimeOfDay with this field set to the minimum value for this field.
static TimeOfDay TimeOfDay.fromCalendarFields(Calendar calendar)
          Constructs a TimeOfDay from a java.util.Calendar using exactly the same field values avoiding any time zone effects.
static TimeOfDay TimeOfDay.fromDateFields(Date date)
          Constructs a TimeOfDay from a java.util.Date using exactly the same field values avoiding any time zone effects.
static TimeOfDay TimeOfDay.fromMillisOfDay(long millisOfDay)
          Constructs a TimeOfDay from the specified millis of day using the ISO chronology.
static TimeOfDay TimeOfDay.fromMillisOfDay(long millisOfDay, Chronology chrono)
          Constructs a TimeOfDay from the specified millis of day using the specified chronology.
 TimeOfDay TimeOfDay.withChronologyRetainFields(Chronology newChronology)
          Creates a new TimeOfDay instance with the specified chronology.
 TimeOfDay TimeOfDay.withField(DateTimeFieldType fieldType, int value)
          Gets a copy of this time with the specified field set to a new value.
 TimeOfDay TimeOfDay.withFieldAdded(DurationFieldType fieldType, int amount)
          Gets a copy of this time with the value of the specified field increased, wrapping to what would be a new day if required.
 TimeOfDay TimeOfDay.withPeriodAdded(ReadablePeriod period, int scalar)
          Gets a copy of this date with the specified period added, wrapping to what would be a new day if required.
 TimeOfDay TimeOfDay.plus(ReadablePeriod period)
          Gets a copy of this instance with the specified period added, wrapping to what would be a new day if required.
 TimeOfDay TimeOfDay.plusHours(int hours)
          Returns a new time plus the specified number of hours.
 TimeOfDay TimeOfDay.plusMinutes(int minutes)
          Returns a new time plus the specified number of minutes.
 TimeOfDay TimeOfDay.plusSeconds(int seconds)
          Returns a new time plus the specified number of seconds.
 TimeOfDay TimeOfDay.plusMillis(int millis)
          Returns a new time plus the specified number of millis.
 TimeOfDay TimeOfDay.minus(ReadablePeriod period)
          Gets a copy of this instance with the specified period take away, wrapping to what would be a new day if required.
 TimeOfDay TimeOfDay.minusHours(int hours)
          Returns a new time minus the specified number of hours.
 TimeOfDay TimeOfDay.minusMinutes(int minutes)
          Returns a new time minus the specified number of minutes.
 TimeOfDay TimeOfDay.minusSeconds(int seconds)
          Returns a new time minus the specified number of seconds.
 TimeOfDay TimeOfDay.minusMillis(int millis)
          Returns a new time minus the specified number of millis.
 

Methods in org.joda.time with parameters of type TimeOfDay
 DateTime YearMonthDay.toDateTime(TimeOfDay time)
          Converts this object to a DateTime using a TimeOfDay to fill in the missing fields and using the default time zone.
 DateTime YearMonthDay.toDateTime(TimeOfDay time, DateTimeZone zone)
          Converts this object to a DateTime using a TimeOfDay to fill in the missing fields.
 



Copyright © 2002-2008 Joda.org. All Rights Reserved.