Java中的 FormatStyle valueOf() 方法及示例
FormatStyle 枚举的valueOf()方法用于获取该类型 FormatStyle 具有指定名称的枚举值。
句法:
public static FormatStyle valueOf(String name)
参数:此方法接受一个名称作为参数,该参数是要返回的枚举常量的名称。
返回值:该方法返回具有指定名称的枚举常量。
异常:此方法引发以下异常:
- IllegalArgumentException :如果此枚举类型没有具有指定名称的常量。
- NullPointerException :如果参数为空。
下面的程序说明了 FormatStyle.valueOf() 方法:
方案一:
// Java program to demonstrate
// FormatStyle.valueOf() method
import java.time.format.FormatStyle;
public class GFG {
public static void main(String[] args)
{
// Get FormatStyle instance
FormatStyle formatStyle
= FormatStyle.valueOf("LONG");
// Print the result
System.out.println("FormatStyle: "
+ formatStyle);
}
}
输出:
FormatStyle: LONG
方案二:
// Java program to demonstrate
// FormatStyle.valueOf() method
import java.time.format.FormatStyle;
public class GFG {
public static void main(String[] args)
{
// Get FormatStyle instance
FormatStyle formatStyle
= FormatStyle.valueOf("FULL");
// Print the result
System.out.println("FormatStyle: "
+ formatStyle);
}
}
输出:
FormatStyle: FULL
参考资料:https: Java