Monday, June 15, 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

1 COMMENT

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS