public enum SkillLevel extends Enum<SkillLevel>
Enum Constant and Description |
---|
EXPERT |
INEXPERIENCED |
MASTER |
PROFICIENT |
SKILLED |
Modifier and Type | Method and Description |
---|---|
static SkillLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SkillLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkillLevel MASTER
public static final SkillLevel EXPERT
public static final SkillLevel SKILLED
public static final SkillLevel PROFICIENT
public static final SkillLevel INEXPERIENCED
public static SkillLevel[] values()
for (SkillLevel c : SkillLevel.values()) System.out.println(c);
public static SkillLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2000–2024 Packwood Software. All rights reserved.