IEra.ITemporalAccessor.Get(ITemporalField) Method

Definition

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

[Android.Runtime.Register("get", "(Ljava/time/temporal/TemporalField;)I", "GetGet_Ljava_time_temporal_TemporalField_Handler:Java.Time.Chrono.IEra, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
override sealed int ITemporalAccessor.Get (Java.Time.Temporal.ITemporalField? field);
[<Android.Runtime.Register("get", "(Ljava/time/temporal/TemporalField;)I", "GetGet_Ljava_time_temporal_TemporalField_Handler:Java.Time.Chrono.IEra, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member Java.Time.Temporal.ITemporalAccessor.Get : Java.Time.Temporal.ITemporalField -> int
override this.Java.Time.Temporal.ITemporalAccessor.Get : Java.Time.Temporal.ITemporalField -> int

Parameters

field
ITemporalField

the field to get, not null

Returns

the value for the field

Implements

Attributes

Remarks

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

This queries this era for the value of the specified field. The returned value will always be within the valid range of values for the field. If it is not possible to return the value, because the field is not supported or for some other reason, an exception is thrown.

If the field is a ChronoField then the query is implemented here. The ERA field returns the value of the era. All other ChronoField instances will throw an UnsupportedTemporalTypeException.

If the field is not a ChronoField, then the result of this method is obtained by invoking TemporalField.getFrom(TemporalAccessor) passing this as the argument. Whether the value can be obtained, and what the value represents, is determined by the field.

Java documentation for java.time.chrono.Era.get(java.time.temporal.TemporalField).

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