DayOfWeek.From(ITemporalAccessor) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Obtains an instance of DayOfWeek
from a temporal object.
[Android.Runtime.Register("from", "(Ljava/time/temporal/TemporalAccessor;)Ljava/time/DayOfWeek;", "", ApiSince=26)]
public static Java.Time.DayOfWeek? From (Java.Time.Temporal.ITemporalAccessor? temporal);
[<Android.Runtime.Register("from", "(Ljava/time/temporal/TemporalAccessor;)Ljava/time/DayOfWeek;", "", ApiSince=26)>]
static member From : Java.Time.Temporal.ITemporalAccessor -> Java.Time.DayOfWeek
Parameters
- temporal
- ITemporalAccessor
the temporal object to convert, not null
Returns
the day-of-week, not null
- Attributes
Remarks
Obtains an instance of DayOfWeek
from a temporal object.
This obtains a day-of-week based on the specified temporal. A TemporalAccessor
represents an arbitrary set of date and time information, which this factory converts to an instance of DayOfWeek
.
The conversion extracts the ChronoField#DAY_OF_WEEK DAY_OF_WEEK
field.
This method matches the signature of the functional interface TemporalQuery
allowing it to be used as a query via method reference, DayOfWeek::from
.
Java documentation for java.time.DayOfWeek.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.