The valueOf() method of a ResolverStyle enum is used to get the enum value of this type ResolverStyle with the specified name.
Syntax:
public static ResolverStyle valueOf(String name)
Parameters: This method accepts a name as the parameter which is the name of the enum constant to be returned.
Return value: This method returns the enum constant with the specified name.
Exceptions: This method throws the following exception:
- IllegalArgumentException: if this enum type has no constant with the specified name.
- NullPointerException: if the argument is null.
Below programs illustrate the ResolverStyle.valueOf() method:
Program 1:
// Java program to demonstrate// ResolverStyle.valueOf() method  import java.time.format.ResolverStyle;  public class GFG {    public static void main(String[] args)    {          // Get ResolverStyle instance        ResolverStyle resolverStyle            = ResolverStyle.valueOf("SMART");          // Print the result        System.out.println("ResolverStyle: "                           + resolverStyle);    }} |
ResolverStyle: SMART
Program 2:
// Java program to demonstrate// ResolverStyle.valueOf() method  import java.time.format.ResolverStyle;  public class GFG {    public static void main(String[] args)    {          // Get ResolverStyle instance        ResolverStyle resolverStyle            = ResolverStyle.valueOf("LENIENT");          // Print the result        System.out.println("ResolverStyle: "                           + resolverStyle);    }} |
ResolverStyle: LENIENT
References: https://docs.oracle.com/javase/10/docs/api/java/time/format/ResolverStyle.html
