public static enum User.ComputerExperience extends java.lang.Enum<User.ComputerExperience>
Enum Constant and Description |
---|
ADVANCED |
BEGINNER |
EXPERT |
INTERMEDIATE |
NA |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toAString() |
static User.ComputerExperience |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static User.ComputerExperience[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final User.ComputerExperience NA
public static final User.ComputerExperience BEGINNER
public static final User.ComputerExperience INTERMEDIATE
public static final User.ComputerExperience ADVANCED
public static final User.ComputerExperience EXPERT
public static User.ComputerExperience[] values()
for (User.ComputerExperience c : User.ComputerExperience.values()) System.out.println(c);
public static User.ComputerExperience valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toAString()