AbstractChronology.Range(ChronoField) 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 specified field.
[Android.Runtime.Register("range", "(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;", "GetRange_Ljava_time_temporal_ChronoField_Handler", ApiSince=26)]
public abstract Java.Time.Temporal.ValueRange? Range (Java.Time.Temporal.ChronoField? field);
[<Android.Runtime.Register("range", "(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;", "GetRange_Ljava_time_temporal_ChronoField_Handler", ApiSince=26)>]
abstract member Range : Java.Time.Temporal.ChronoField -> Java.Time.Temporal.ValueRange
Parameters
- field
- ChronoField
the field to get the range for, not null
Returns
the range of valid values for the field, not null
Implements
- Attributes
Remarks
Gets the range of valid values for the specified field.
All fields can be expressed as a long
integer. This method returns an object that describes the valid range for that value.
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.
This method will return a result whether or not the chronology supports the field.
Java documentation for java.time.chrono.Chronology.range(java.time.temporal.ChronoField)
.
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.