Enum Constant and Description |
---|
ARMOR_SKIN
时装工坊时装
|
BEDROCK_SKIN
基岩时装
|
EFFECT_SKIN
特效时装
|
MC_SKIN
MC原版皮肤
|
MC_SKIN_CAPE
MC原版披风
|
TAG_ABOVE
玩家头顶名字上面的字
|
TAG_BELOW
玩家头顶名字下面的字
|
Modifier and Type | Method and Description |
---|---|
static SkinType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SkinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkinType ARMOR_SKIN
public static final SkinType BEDROCK_SKIN
public static final SkinType MC_SKIN
public static final SkinType TAG_BELOW
public static final SkinType TAG_ABOVE
public static final SkinType EFFECT_SKIN
public static final SkinType MC_SKIN_CAPE
public static SkinType[] values()
for (SkinType c : SkinType.values()) System.out.println(c);
public static SkinType 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