Class and Description |
---|
org.joda.time.TimeOfDay
Use LocalTime which has a much better internal implementation and
has been available since 1.3
|
org.joda.time.TimeOfDay.Property
Use LocalTime which has a much better internal implementation
|
org.joda.time.YearMonthDay
Use LocalDate which has a much better internal implementation and
has been available since 1.3
|
org.joda.time.YearMonthDay.Property
Use LocalDate which has a much better internal implementation
|
Method and Description |
---|
org.joda.time.format.DateTimeFormatter.getChronolgy()
Use the method with the correct spelling
|
org.joda.time.format.DateTimeParserBucket.getOffset()
use Integer version
|
org.joda.time.format.DateTimeParserBucket.setOffset(int)
use Integer version
|
org.joda.time.LocalDate.toDateTimeAtMidnight()
Use
LocalDate.toDateTimeAtStartOfDay() which won't throw an exception |
org.joda.time.LocalDate.toDateTimeAtMidnight(DateTimeZone)
Use
LocalDate.toDateTimeAtStartOfDay(DateTimeZone) which won't throw an exception |
org.joda.time.Instant.toDateTimeISO()
Use toDateTime() as it is identical
|
org.joda.time.Instant.toMutableDateTimeISO()
Use toMutableDateTime() as it is identical
|
org.joda.time.DateTime.toTimeOfDay()
Use LocalTime instead of TimeOfDay
|
org.joda.time.DateTime.toYearMonthDay()
Use LocalDate instead of YearMonthDay
|
org.joda.time.DateMidnight.toYearMonthDay()
Use LocalDate instead of YearMonthDay
|
Constructor and Description |
---|
org.joda.time.format.DateTimeParserBucket(long, Chronology, Locale)
Use longer constructor
|
org.joda.time.format.DateTimeParserBucket(long, Chronology, Locale, Integer)
Use longer constructor
|
Copyright © 2002-2015 Joda.org. All Rights Reserved.