public enum SkinPart extends Enum<SkinPart>
| Enum Constant and Description |
|---|
CAPE |
HAT |
JACKET |
LEFT_PANTS_LEG |
LEFT_SLEEVE |
RIGHT_PANTS_LEG |
RIGHT_SLEEVE |
| Modifier and Type | Method and Description |
|---|---|
static SkinPart |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SkinPart[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkinPart CAPE
public static final SkinPart JACKET
public static final SkinPart LEFT_SLEEVE
public static final SkinPart RIGHT_SLEEVE
public static final SkinPart LEFT_PANTS_LEG
public static final SkinPart RIGHT_PANTS_LEG
public static final SkinPart HAT
public static SkinPart[] values()
for (SkinPart c : SkinPart.values()) System.out.println(c);
public static SkinPart 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 © 2020. All rights reserved.