Metoda valueOf() klasy Enum zwraca stałą wyliczeniową (określonego typu wyliczeniowego) wraz ze zdefiniowaną nazwą.
Składnia
public static <t extends enum> T valueOf(Class enumType,String name) </t>
Parametry typu:
T : Jest to typ wyliczeniowy, którego stała jest zwracana.
Parametry
typ wyliczeniowy - Jest to obiekt Class typu wyliczeniowego, który zwraca stałą
nazwa - Jest to nazwa stałej, która ma zostać zwrócona
Wartość zwracana
Metoda valueOf() zwraca stałą wyliczeniową wraz ze zdefiniowaną nazwą.
Rzuca
Metoda valueOf() zgłasza:
- IllegalArgumentException, jeśli zdefiniowany typ wyliczeniowy jest niespójny ze zdefiniowaną nazwą lub typ wyliczeniowy nie jest ilustrowany przez zdefiniowany obiekt klasy.
- NullPointerException, jeśli enumType lub name reprezentuje wartość null.
Przykład 1
enum Parts{ Skin, Muscles,Bones,Organs,Tissue; } public class Enum_valueOfMethodExample1 { public static void main(String[] args) { System.out.println('The part which is exposed to the environment is :'); for(Parts part : Parts.values()){ int i = part.ordinal()+1; System.out.println(i+' '+part); } Parts part = Parts.valueOf('Skin'); System.out.println(' Ans: '+part); } }Przetestuj teraz
Wyjście:
The part which is exposed to the environment is : 1 Skin 2 Muscles 3 Bones 4 Organs 5 Tissue Ans: Skin
Przykład 2
enum Flower{ Rose,Lily, Orchids, Sunflower,Jasmine; } public class Enum_valueOfMethodExample2 { public static void main(String[] args) { System.out.println('The part which is exposed to the environment is :'); for(Flower flower : Flower.values()) { System.out.println(Flower.valueOf(' ')); } } }Przetestuj teraz
Wyjście:
Exception in thread 'main' 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)