MonthDay range(TemporalField field)
gets the range
of valid values for the specified field.
range
has the following syntax.
public ValueRange range(TemporalField field)
The following example shows how to use range
.
import java.time.MonthDay; import java.time.temporal.ChronoField; import java.time.temporal.ValueRange; /*ww w. ja va2 s . c o m*/ public class Main { public static void main(String[] args) { MonthDay m = MonthDay.now(); ValueRange n = m.range(ChronoField.MONTH_OF_YEAR); System.out.println(n); } }
The code above generates the following result.