logo

Java Enum valueOf() メソッド

Enum クラスの valueOf() メソッドは、定義された名前とともに (定義された enum 型の) enum 定数を返します。

構文

 public static <t extends enum> T valueOf(Class enumType,String name) </t>

型パラメータ:

T : 定数が得られる enum 型です。

パラメーター

enumType - 定数を返すenum型のClassオブジェクトです

名前 - 返される定数の名前です

戻り値

valueOf() メソッドは、定義された名前とともに enum 定数を返します。

投げる

valueOf() メソッドは以下をスローします。

  1. IllegalArgumentException。定義された列挙型が定義された名前と一致しない場合、または列挙型が定義されたクラス オブジェクトによって示されない場合。
  2. NullPointerException (enumType または name が null 値を表す場合)。

例1

 enum Parts{ Skin, Muscles,Bones,Organs,Tissue; } public class Enum_valueOfMethodExample1 { public static void main(String[] args) { System.out.println(&apos;The part which is exposed to the environment is :&apos;); for(Parts part : Parts.values()){ int i = part.ordinal()+1; System.out.println(i+&apos; &apos;+part); } Parts part = Parts.valueOf(&apos;Skin&apos;); System.out.println(&apos;
Ans: &apos;+part); } } 
今すぐテストしてください

出力:

 The part which is exposed to the environment is : 1 Skin 2 Muscles 3 Bones 4 Organs 5 Tissue Ans: Skin 

例 2

 enum Flower{ Rose,Lily, Orchids, Sunflower,Jasmine; } public class Enum_valueOfMethodExample2 { public static void main(String[] args) { System.out.println(&apos;The part which is exposed to the environment is :&apos;); for(Flower flower : Flower.values()) { System.out.println(Flower.valueOf(&apos; &apos;)); } } } 
今すぐテストしてください

出力:

 Exception in thread &apos;main&apos; java.lang.IllegalArgumentException: No enum constant com.javaTpoint.Flower. The part which is exposed to the environment is : atjava.lang.Enum.valueOf(Enum.java:238) atcom.javaTpoint.Flower.valueOf(Enum_valueOfMethodExample2.java:4) at com.javaTpoint.Enum_valueOfMethodExample2.main(Enum_valueOfMethodExample2.java:11)