Enum Constant and Description |
---|
ALCHEMY
Alchemy skill of the NPC.
|
ALTERATION
Alteration skill of the NPC.
|
BLOCK
Block skill of the NPC.
|
CONJURATION
Conjuration skill of the NPC.
|
DESTRUCTION
Destruction skill of the NPC.
|
ENCHANTING
Enchanting skill of the NPC.
|
HEAVYARMOR
Heavy Armor skill of the NPC.
|
ILLUSION
Illusion skill of the NPC.
|
LIGHTARMOR
Light Armor skill of the NPC.
|
LOCKPICKING
Lockpicking skill of the NPC.
|
MARKSMAN
Marksman skill of the NPC.
|
ONEHANDED
One-handed skill of the NPC.
|
PICKPOCKET
Pick Pocket skill of the NPC.
|
RESTORATION
Restoration skill of the NPC.
|
SMITHING
Smithing skill of the NPC.
|
SNEAK
Sneak skill of the NPC.
|
SPEECHCRAFT
Speech Craft skill of the NPC.
|
TWOHANDED
Two-handed skill of the NPC.
|
Modifier and Type | Method and Description |
---|---|
static Skill |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Skill[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Skill ONEHANDED
public static final Skill TWOHANDED
public static final Skill MARKSMAN
public static final Skill BLOCK
public static final Skill SMITHING
public static final Skill HEAVYARMOR
public static final Skill LIGHTARMOR
public static final Skill PICKPOCKET
public static final Skill LOCKPICKING
public static final Skill SNEAK
public static final Skill ALCHEMY
public static final Skill SPEECHCRAFT
public static final Skill ALTERATION
public static final Skill CONJURATION
public static final Skill DESTRUCTION
public static final Skill ILLUSION
public static final Skill RESTORATION
public static final Skill ENCHANTING
public static Skill[] values()
for (Skill c : Skill.values()) System.out.println(c);
public static Skill 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 null