当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java FormatStyle valueOf()用法及代码示例


FormatStyle枚举的valueOf()方法用于获取具有指定名称的FormatStyle类型的枚举值。

用法:

public static FormatStyle valueOf(String name)

参数:此方法接受名称作为参数,该名称是要返回的枚举常量的名称。


返回值:此方法返回具有指定名称的枚举常量。

异常:此方法引发以下异常:

  • IllegalArgumentException:如果此枚举类型没有使用指定名称的常量。
  • NullPointerException :如果参数为null。

以下示例程序旨在说明FormatStyle.valueOf()方法:
程序1:

// 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

程序2:

// 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://docs.oracle.com/javase/10/docs/api/java/time/format/FormatStyle.html



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 FormatStyle valueOf() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。