Example usage for java.time.temporal WeekFields ISO

List of usage examples for java.time.temporal WeekFields ISO

Introduction

In this page you can find the example usage for java.time.temporal WeekFields ISO.

Prototype

WeekFields ISO

To view the source code for java.time.temporal WeekFields ISO.

Click Source Link

Document

The ISO-8601 definition, where a week starts on Monday and the first week has a minimum of 4 days.

Usage

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

@getter("week_of_year")
public int getWeekYear() {
    return internal.get(WeekFields.ISO.weekOfYear());
}