Saturday, October 25, 2025
HomeLanguagesJavaWeekFields weekBasedYear() method in Java with Examples

WeekFields weekBasedYear() method in Java with Examples

The weekBasedYear() method of WeekFields class is used to return a field to access the year of a week-based-year based on this WeekFields.This field can be used with any calendar system.

Syntax:

public TemporalField weekBasedYear()

Parameters: This method accepts nothing.

Return value: This method returns a field providing access to the week-based-year, not null.

Below programs illustrate the WeekFields.weekBasedYear() method:
Program 1:




// Java program to demonstrate
// WeekFields.weekBasedYear() method
  
import java.time.DayOfWeek;
import java.time.temporal.TemporalField;
import java.time.temporal.WeekFields;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(DayOfWeek.MONDAY, 1);
  
        // apply weekBasedYear()
        TemporalField weekBasedYear
            = weekFields.weekBasedYear();
  
        // print results
        System.out.println(weekBasedYear);
    }
}


Output:

WeekBasedYear[WeekFields[MONDAY, 1]]

Program 2:




// Java program to demonstrate
// WeekFields.weekBasedYear() method
  
import java.time.DayOfWeek;
import java.time.temporal.TemporalField;
import java.time.temporal.WeekFields;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(DayOfWeek.SUNDAY, 1);
  
        // apply weekBasedYear()
        TemporalField weekBasedYear
            = weekFields.weekBasedYear();
  
        // print results
        System.out.println(weekBasedYear);
    }
}


Output:

WeekBasedYear[WeekFields[SUNDAY, 1]]

References: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/WeekFields.html#weekBasedYear()

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS