ITemporalField.Range 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.
Gets the range of valid values for the field.
[Android.Runtime.Register("range", "()Ljava/time/temporal/ValueRange;", "GetRangeHandler:Java.Time.Temporal.ITemporalFieldInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public Java.Time.Temporal.ValueRange? Range ();
[<Android.Runtime.Register("range", "()Ljava/time/temporal/ValueRange;", "GetRangeHandler:Java.Time.Temporal.ITemporalFieldInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member Range : unit -> Java.Time.Temporal.ValueRange
Returns
the range of valid values for the field, not null
- Attributes
Remarks
Gets the range of valid values for the field.
All fields can be expressed as a long
integer. This method returns an object that describes the valid range for that value. This method is generally only applicable to the ISO-8601 calendar system.
Note that the result only describes the minimum and maximum valid values and it is important not to read too much into them. For example, there could be values within the range that are invalid for the field.
Java documentation for java.time.temporal.TemporalField.range()
.
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.