Example usage for java.time Instant range

List of usage examples for java.time Instant range

Introduction

In this page you can find the example usage for java.time Instant 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) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.range(ChronoField.NANO_OF_SECOND));

}