OffsetDateTime Class

Definition

A date-time with an offset from UTC/Greenwich in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00.

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

Remarks

A date-time with an offset from UTC/Greenwich in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00.

OffsetDateTime is an immutable representation of a date-time with an offset. This class stores all date and time fields, to a precision of nanoseconds, as well as the offset from UTC/Greenwich. For example, the value "2nd October 2007 at 13:45:30.123456789 +02:00" can be stored in an OffsetDateTime.

OffsetDateTime, java.time.ZonedDateTime and java.time.Instant all store an instant on the time-line to nanosecond precision. Instant is the simplest, simply representing the instant. OffsetDateTime adds to the instant the offset from UTC/Greenwich, which allows the local date-time to be obtained. ZonedDateTime adds full time-zone rules.

It is intended that ZonedDateTime or Instant is used to model data in simpler applications. This class may be used when modeling date-time concepts in more detail, or when communicating to a database or in a network protocol.

Added in 1.8.

Java documentation for java.time.OffsetDateTime.

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

Class

Returns the runtime class of this Object.

(Inherited from Object)
DayOfMonth

Gets the day-of-month field.

DayOfWeek
DayOfYear

Gets the day-of-year field.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
Hour

Gets the hour-of-day field.

JniIdentityHashCode (Inherited from Object)
JniPeerMembers
Max
Min
Minute

Gets the minute-of-hour field.

Month
MonthValue

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

Nano

Gets the nano-of-second field.

Offset
PeerReference (Inherited from Object)
Second

Gets the second-of-minute field.

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

AdjustInto(ITemporal)
AtZoneSameInstant(ZoneId)
AtZoneSimilarLocal(ZoneId)
Clone()

Creates and returns a copy of this object.

(Inherited from Object)
CompareTo(OffsetDateTime)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

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

(Inherited from Object)
Format(DateTimeFormatter)
From(ITemporalAccessor)
Get(ITemporalField)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetLong(ITemporalField)
IsAfter(OffsetDateTime)
IsBefore(OffsetDateTime)
IsEqual(OffsetDateTime)
IsSupported(ITemporalField)
IsSupported(ITemporalUnit)
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)
Minus(Int64, ITemporalUnit)
Minus(ITemporalAmount)
MinusDays(Int64)
MinusHours(Int64)
MinusMinutes(Int64)
MinusMonths(Int64)
MinusNanos(Int64)
MinusSeconds(Int64)
MinusWeeks(Int64)
MinusYears(Int64)
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)
Now(ZoneId)
Of(Int32, Int32, Int32, Int32, Int32, Int32, Int32, ZoneOffset)
Of(LocalDate, LocalTime, ZoneOffset)
Of(LocalDateTime, ZoneOffset)
OfInstant(Instant, ZoneId)
Parse(ICharSequence)
Parse(ICharSequence, DateTimeFormatter)
Parse(String)
Parse(String, DateTimeFormatter)
Plus(Int64, ITemporalUnit)
Plus(ITemporalAmount)
PlusDays(Int64)
PlusHours(Int64)
PlusMinutes(Int64)
PlusMonths(Int64)
PlusNanos(Int64)
PlusSeconds(Int64)
PlusWeeks(Int64)
PlusYears(Int64)
Query(ITemporalQuery)
Range(ITemporalField)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
TimeLineOrder()
ToArray<T>() (Inherited from Object)
ToEpochSecond()

Converts this date-time to the number of seconds from the epoch of 1970-01-01T00:00:00Z.

ToInstant()
ToLocalDate()
ToLocalDateTime()
ToLocalTime()
ToOffsetTime()
ToString()

Returns a string representation of the object.

(Inherited from Object)
ToZonedDateTime()
TruncatedTo(ITemporalUnit)
UnregisterFromRuntime() (Inherited from Object)
Until(ITemporal, ITemporalUnit)
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)

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, 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)
With(ITemporalAdjuster)
With(ITemporalField, Int64)
WithDayOfMonth(Int32)
WithDayOfYear(Int32)
WithHour(Int32)
WithMinute(Int32)
WithMonth(Int32)
WithNano(Int32)
WithOffsetSameInstant(ZoneOffset)
WithOffsetSameLocal(ZoneOffset)
WithSecond(Int32)
WithYear(Int32)

Explicit Interface Implementations

IComparable.CompareTo(Object)
IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to