Example usage for java.time.temporal WeekFields weekOfWeekBasedYear

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

Introduction

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

Prototype

TemporalField weekOfWeekBasedYear

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

Click Source Link

Document

The field that represents the week-of-week-based-year.

Usage

From source file:mesclasses.util.NodeUtil.java

public static int getWeekNumber(LocalDate date) {
    WeekFields wf = WeekFields.of(Locale.FRANCE);
    return date.get(wf.weekOfWeekBasedYear());
}