Sunday, February 22, 2026
HomeLanguagesJavaWeekFields toString() method in Java with Examples

WeekFields toString() method in Java with Examples

The toString() method of WeekFields class is used to return string representation of this WeekFields object.

Syntax:

public String toString()

Parameters: This method accepts nothing.

Return value: This method returns string representation of this WeekFields.

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




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


Output:

String representation :WeekFields[MONDAY, 1]

Program 2:




// Java program to demonstrate
// WeekFields.toString() method
  
import java.time.temporal.WeekFields;
import java.util.Locale;
  
public class GFG {
    public static void main(String[] args)
    {
  
        Locale locale = new Locale("EN", "INDIA");
  
        // create WeekFields
        WeekFields weekFields = WeekFields.of(locale);
  
        // apply toString()
        String toString = weekFields.toString();
  
        // print results
        System.out.println("String representation :"
                           + toString);
    }
}


Output:

String representation :WeekFields[SUNDAY, 1]

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS