LocalDate Class

Definition

A date without a time-zone in the ISO-8601 calendar system, such as 2007-12-03.

[Android.Runtime.Register("java/time/LocalDate", ApiSince=26, DoNotGenerateAcw=true)]
public sealed class LocalDate : Java.Lang.Object, IDisposable, Java.IO.ISerializable, Java.Time.Chrono.IChronoLocalDate
[<Android.Runtime.Register("java/time/LocalDate", ApiSince=26, DoNotGenerateAcw=true)>]
type LocalDate = class
    inherit Object
    interface ISerializable
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
    interface IChronoLocalDate
    interface IComparable
    interface ITemporal
    interface ITemporalAccessor
    interface ITemporalAdjuster
Inheritance
Attributes
Implements

Remarks

A date without a time-zone in the ISO-8601 calendar system, such as 2007-12-03.

LocalDate is an immutable date-time object that represents a date, often viewed as year-month-day. Other date fields, such as day-of-year, day-of-week and week-of-year, can also be accessed. For example, the value "2nd October 2007" can be stored in a LocalDate.

This class does not store or represent a time or time-zone. Instead, it is a description of the date, as used for birthdays. It cannot represent an instant on the time-line without additional information such as an offset or time-zone.

The ISO-8601 calendar system is the modern civil calendar system used today in most of the world. It is equivalent to the proleptic Gregorian calendar system, in which today's rules for leap years are applied for all time. For most applications written today, the ISO-8601 rules are entirely suitable. However, any application that makes use of historical dates, and requires them to be accurate will find the ISO-8601 approach unsuitable.

Added in 1.8.

Java documentation for java.time.LocalDate.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Properties

Name Description
Chronology

Gets the chronology of this date, which is the ISO calendar system.

Class

Returns the runtime class of this Object.

(Inherited from Object)
DayOfMonth

Gets the day-of-month field.

DayOfWeek

Gets the day-of-week field, which is an enum DayOfWeek.

DayOfYear

Gets the day-of-year field.

Epoch
Era

Gets the era applicable at this date.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
IsLeapYear

Checks if the year is a leap year, according to the ISO proleptic calendar system rules.

JniIdentityHashCode

Gets the identity hash code assigned to this Java peer by the interop runtime.

(Inherited from Object)
JniManagedPeerState (Inherited from JavaObject)
JniPeerMembers
Max
Min
Month

Gets the month-of-year field using the Month enum.

MonthValue

Gets the month-of-year field from 1 to 12.

PeerReference

Gets the JNI object reference for this Java peer.

(Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)
ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)
Year

Gets the year field.

Methods

Name Description
AdjustInto(ITemporal)

Adjusts the specified temporal object to have the same date as this object.

AtStartOfDay()

Combines this date with the time of midnight to create a LocalDateTime at the start of this date.

AtStartOfDay(ZoneId)

Returns a zoned date-time from this date at the earliest valid time according to the rules in the time-zone.

AtTime(Int32, Int32, Int32, Int32)

Combines this date with a time to create a LocalDateTime.

AtTime(Int32, Int32, Int32)

Combines this date with a time to create a LocalDateTime.

AtTime(Int32, Int32)

Combines this date with a time to create a LocalDateTime.

AtTime(LocalTime)

Combines this date with a time to create a LocalDateTime.

AtTime(OffsetTime)

Combines this date with an offset time to create an OffsetDateTime.

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
CompareTo(IChronoLocalDate)

Compares this date to another date.

CompareTo(Object)
Construct(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
Dispose()

Releases the resources held by this Java peer.

(Inherited from Object)
Dispose(Boolean)

Releases the resources held by this Java peer.

(Inherited from Object)
DisposeUnlessReferenced() (Inherited from JavaObject)
Equals(Object) (Inherited from JavaObject)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
Format(DateTimeFormatter)

Formats this date using the specified formatter.

From(ITemporalAccessor)

Obtains an instance of LocalDate from a temporal object.

Get(ITemporalField)

Gets the value of the specified field from this date as an int.

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetLong(ITemporalField)

Gets the value of the specified field from this date as a long.

IsAfter(IChronoLocalDate)

Checks if this date is after the specified date.

IsBefore(IChronoLocalDate)

Checks if this date is before the specified date.

IsEqual(IChronoLocalDate)

Checks if this date is equal to the specified date.

IsSupported(ITemporalField)

Checks if the specified field is supported.

IsSupported(ITemporalUnit)

Checks if the specified unit is supported.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
LengthOfMonth()

Returns the length of the month represented by this date.

LengthOfYear()

Returns the length of the year represented by this date.

Minus(Int64, ITemporalUnit)

Returns a copy of this date with the specified amount subtracted.

Minus(ITemporalAmount)

Returns a copy of this date with the specified amount subtracted.

MinusDays(Int64)

Returns a copy of this LocalDate with the specified number of days subtracted.

MinusMonths(Int64)

Returns a copy of this LocalDate with the specified number of months subtracted.

MinusWeeks(Int64)

Returns a copy of this LocalDate with the specified number of weeks subtracted.

MinusYears(Int64)

Returns a copy of this LocalDate with the specified number of years subtracted.

Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
Now()
Now(Clock)

Obtains the current date from the specified clock.

Now(ZoneId)

Obtains the current date from the system clock in the specified time-zone.

Of(Int32, Int32, Int32)

Obtains an instance of LocalDate from a year, month and day.

Of(Int32, Month, Int32)

Obtains an instance of LocalDate from a year, month and day.

OfEpochDay(Int64)

Obtains an instance of LocalDate from the epoch day count.

OfInstant(Instant, ZoneId)

Obtains an instance of LocalDate from an Instant and zone ID.

OfYearDay(Int32, Int32)

Obtains an instance of LocalDate from a year and day-of-year.

Parse(ICharSequence, DateTimeFormatter)

Obtains an instance of LocalDate from a text string using a specific formatter.

Parse(ICharSequence)

Obtains an instance of LocalDate from a text string such as 2007-12-03.

Parse(String, DateTimeFormatter)
Parse(String)
Plus(Int64, ITemporalUnit)

Returns a copy of this date with the specified amount added.

Plus(ITemporalAmount)

Returns a copy of this date with the specified amount added.

PlusDays(Int64)

Returns a copy of this LocalDate with the specified number of days added.

PlusMonths(Int64)

Returns a copy of this LocalDate with the specified number of months added.

PlusWeeks(Int64)

Returns a copy of this LocalDate with the specified number of weeks added.

PlusYears(Int64)

Returns a copy of this LocalDate with the specified number of years added.

Query(ITemporalQuery)

Queries this date using the specified query.

Range(ITemporalField)

Gets the range of valid values for the specified field.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetPeerReference(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
ToArray<T>()

Creates a managed array from this Java array wrapper.

(Inherited from Object)
ToEpochDay()
ToEpochSecond(LocalTime, ZoneOffset)

Converts this LocalDate to the number of seconds since the epoch of 1970-01-01T00:00:00Z.

ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime()

Unregisters this Java peer from the interop runtime.

(Inherited from Object)
Until(IChronoLocalDate)

Calculates the period between this date and another date as a Period.

Until(ITemporal, ITemporalUnit)

Calculates the amount of time until another date in terms of the specified unit.

Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
With(ITemporalAdjuster)

Returns an adjusted copy of this date.

With(ITemporalField, Int64)

Returns a copy of this date with the specified field set to a new value.

WithDayOfMonth(Int32)

Returns a copy of this LocalDate with the day-of-month altered.

WithDayOfYear(Int32)

Returns a copy of this LocalDate with the day-of-year altered.

WithMonth(Int32)

Returns a copy of this LocalDate with the month-of-year altered.

WithYear(Int32)

Returns a copy of this LocalDate with the year altered.

Explicit Interface Implementations

Name Description
IJavaPeerable.Disposed() (Inherited from JavaObject)
IJavaPeerable.Finalized() (Inherited from JavaObject)
IJavaPeerable.JniObjectReferenceControlBlock (Inherited from JavaObject)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from JavaObject)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from JavaObject)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from JavaObject)
IJavaPeerable.UnregisterFromRuntime()

Extension Methods

Name Description
GetJniTypeName(IJavaPeerable)

Gets the JNI name of the type of the instance self.

JavaAs<TResult>(IJavaPeerable)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
TryJavaCast<TResult>(IJavaPeerable, TResult)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

Applies to