_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
msi_333
Code subject: Re: Java enum example
Posted: Sat Aug 22, 2009 5:28 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2103 Location: Earth Has thanked: 39 time Have thanks: 56 time
you may need an example on how to access a value of Enum , that is why i added this example : of accessing Enum in Java. For example the following code snippet show you show to access car Enum in the main class :
Code:
public class EnumTest { static CarEnum mycar; public static void main(String args[]) { System.out.println(mycar.BMW.getCarType()); } }
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )