LocalTime range(TemporalField field) example

Description

LocalTime range(TemporalField field) gets the range of valid values for the specified field.

The range object expresses the minimum and maximum valid values for a field.

Syntax

range has the following syntax.


public ValueRange range(TemporalField field)

Example

The following example shows how to use range.


import java.time.LocalTime;
import java.time.temporal.ChronoField;
//from  w ww .ja va 2s . co m
public class Main {
  public static void main(String[] args) {
    LocalTime l = LocalTime.now();

    System.out.println(l.range(ChronoField.MINUTE_OF_HOUR));
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset