Example usage for java.time.temporal ChronoField MICRO_OF_SECOND

List of usage examples for java.time.temporal ChronoField MICRO_OF_SECOND

Introduction

In this page you can find the example usage for java.time.temporal ChronoField MICRO_OF_SECOND.

Prototype

ChronoField MICRO_OF_SECOND

To view the source code for java.time.temporal ChronoField MICRO_OF_SECOND.

Click Source Link

Document

The micro-of-second.

Usage

From source file:Main.java

public static void main(String[] args) {
    LocalTime l = LocalTime.now();

    System.out.println(l.isSupported(ChronoField.MICRO_OF_SECOND));
}