Share via


Chronology.From(ITemporalAccessor) Method

Definition

Caution

Use 'Java.Time.Chrono.IChronology.From'. This class will be removed in a future release.

Obtains an instance of Chronology from a temporal object.

[Android.Runtime.Register("from", "(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/Chronology;", "", ApiSince=26)]
[System.Obsolete("Use 'Java.Time.Chrono.IChronology.From'. This class will be removed in a future release.")]
public static Java.Time.Chrono.IChronology? From (Java.Time.Temporal.ITemporalAccessor? temporal);
[<Android.Runtime.Register("from", "(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/Chronology;", "", ApiSince=26)>]
[<System.Obsolete("Use 'Java.Time.Chrono.IChronology.From'. This class will be removed in a future release.")>]
static member From : Java.Time.Temporal.ITemporalAccessor -> Java.Time.Chrono.IChronology

Parameters

temporal
ITemporalAccessor

the temporal to convert, not null

Returns

the chronology, not null

Attributes

Remarks

Obtains an instance of Chronology from a temporal object.

This obtains a chronology based on the specified temporal. A TemporalAccessor represents an arbitrary set of date and time information, which this factory converts to an instance of Chronology.

The conversion will obtain the chronology using TemporalQueries#chronology(). If the specified temporal object does not have a chronology, IsoChronology is returned.

This method matches the signature of the functional interface TemporalQuery allowing it to be used as a query via method reference, Chronology::from.

Java documentation for java.time.chrono.Chronology.from(java.time.temporal.TemporalAccessor).

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.

Applies to