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