Example usage for java.time.temporal ChronoField SECOND_OF_DAY

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

Introduction

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

Prototype

ChronoField SECOND_OF_DAY

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

Click Source Link

Document

The second-of-day.

Usage

From source file:msi.gama.util.GamaDate.java

@getter("second_of_day")
public int getSecondOfDay() {
    return internal.get(ChronoField.SECOND_OF_DAY);
}