Uses of Class
org.joda.time.LocalDate

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

Uses of LocalDate in org.joda.time
 

Methods in org.joda.time that return LocalDate
 LocalDate YearMonthDay.toLocalDate()
          Deprecated. Converts this object to a LocalDate with the same date and chronology.
 LocalDate LocalDateTime.toLocalDate()
          Converts this object to a LocalDate with the same date and chronology.
static LocalDate LocalDate.fromCalendarFields(Calendar calendar)
          Constructs a LocalDate from a java.util.Calendar using exactly the same field values avoiding any time zone effects.
static LocalDate LocalDate.fromDateFields(Date date)
          Constructs a LocalDate from a java.util.Date using exactly the same field values avoiding any time zone effects.
 LocalDate LocalDate.withFields(ReadablePartial partial)
          Returns a copy of this date with the partial set of fields replacing those from this instance.
 LocalDate LocalDate.withField(DateTimeFieldType fieldType, int value)
          Returns a copy of this date with the specified field set to a new value.
 LocalDate LocalDate.withFieldAdded(DurationFieldType fieldType, int amount)
          Returns a copy of this date with the value of the specified field increased.
 LocalDate LocalDate.withPeriodAdded(ReadablePeriod period, int scalar)
          Returns a copy of this date with the specified period added.
 LocalDate LocalDate.plus(ReadablePeriod period)
          Returns a copy of this date with the specified period added.
 LocalDate LocalDate.plusYears(int years)
          Returns a copy of this date plus the specified number of years.
 LocalDate LocalDate.plusMonths(int months)
          Returns a copy of this date plus the specified number of months.
 LocalDate LocalDate.plusWeeks(int weeks)
          Returns a copy of this date plus the specified number of weeks.
 LocalDate LocalDate.plusDays(int days)
          Returns a copy of this date plus the specified number of days.
 LocalDate LocalDate.minus(ReadablePeriod period)
          Returns a copy of this date with the specified period taken away.
 LocalDate LocalDate.minusYears(int years)
          Returns a copy of this date minus the specified number of years.
 LocalDate LocalDate.minusMonths(int months)
          Returns a copy of this date minus the specified number of months.
 LocalDate LocalDate.minusWeeks(int weeks)
          Returns a copy of this date minus the specified number of weeks.
 LocalDate LocalDate.minusDays(int days)
          Returns a copy of this date minus the specified number of days.
 LocalDate LocalDate.withEra(int era)
          Returns a copy of this date with the era field updated.
 LocalDate LocalDate.withCenturyOfEra(int centuryOfEra)
          Returns a copy of this date with the century of era field updated.
 LocalDate LocalDate.withYearOfEra(int yearOfEra)
          Returns a copy of this date with the year of era field updated.
 LocalDate LocalDate.withYearOfCentury(int yearOfCentury)
          Returns a copy of this date with the year of century field updated.
 LocalDate LocalDate.withYear(int year)
          Returns a copy of this date with the year field updated.
 LocalDate LocalDate.withWeekyear(int weekyear)
          Returns a copy of this date with the weekyear field updated.
 LocalDate LocalDate.withMonthOfYear(int monthOfYear)
          Returns a copy of this date with the month of year field updated.
 LocalDate LocalDate.withWeekOfWeekyear(int weekOfWeekyear)
          Returns a copy of this date with the week of weekyear field updated.
 LocalDate LocalDate.withDayOfYear(int dayOfYear)
          Returns a copy of this date with the day of year field updated.
 LocalDate LocalDate.withDayOfMonth(int dayOfMonth)
          Returns a copy of this date with the day of month field updated.
 LocalDate LocalDate.withDayOfWeek(int dayOfWeek)
          Returns a copy of this date with the day of week field updated.
 LocalDate LocalDate.Property.getLocalDate()
          Gets the LocalDate object linked to this property.
 LocalDate LocalDate.Property.addToCopy(int value)
          Adds to this field in a copy of this LocalDate.
 LocalDate LocalDate.Property.addWrapFieldToCopy(int value)
          Adds to this field, possibly wrapped, in a copy of this LocalDate.
 LocalDate LocalDate.Property.setCopy(int value)
          Sets this field in a copy of the LocalDate.
 LocalDate LocalDate.Property.setCopy(String text, Locale locale)
          Sets this field in a copy of the LocalDate to a parsed text value.
 LocalDate LocalDate.Property.setCopy(String text)
          Sets this field in a copy of the LocalDate to a parsed text value.
 LocalDate LocalDate.Property.withMaximumValue()
          Returns a new LocalDate with this field set to the maximum value for this field.
 LocalDate LocalDate.Property.withMinimumValue()
          Returns a new LocalDate with this field set to the minimum value for this field.
 LocalDate LocalDate.Property.roundFloorCopy()
          Rounds to the lowest whole unit of this field on a copy of this LocalDate.
 LocalDate LocalDate.Property.roundCeilingCopy()
          Rounds to the highest whole unit of this field on a copy of this LocalDate.
 LocalDate LocalDate.Property.roundHalfFloorCopy()
          Rounds to the nearest whole unit of this field on a copy of this LocalDate, favoring the floor if halfway.
 LocalDate LocalDate.Property.roundHalfCeilingCopy()
          Rounds to the nearest whole unit of this field on a copy of this LocalDate, favoring the ceiling if halfway.
 LocalDate LocalDate.Property.roundHalfEvenCopy()
          Rounds to the nearest whole unit of this field on a copy of this LocalDate.
 LocalDate DateTime.toLocalDate()
          Converts this object to a LocalDate with the same date and chronology.
 LocalDate DateMidnight.toLocalDate()
          Converts this object to a LocalDate with the same date and chronology.
 



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