Example usage for java.time ZoneOffset range

List of usage examples for java.time ZoneOffset range

Introduction

In this page you can find the example usage for java.time ZoneOffset range.

Prototype

@Override 
public ValueRange range(TemporalField field) 

Source Link

Document

Gets the range of valid values for the specified field.

Usage

From source file:Main.java

public static void main(String[] args) {
    ZoneOffset z = ZoneOffset.UTC;
    ValueRange t = z.range(ChronoField.OFFSET_SECONDS);
    System.out.println(t);/*from   ww w .j av  a  2s .  c o m*/
}