Package net.minecraft.entity.player
Enum PlayerModelPart
- java.lang.Object
-
- java.lang.Enum<PlayerModelPart>
-
- net.minecraft.entity.player.PlayerModelPart
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PlayerModelPart>
public enum PlayerModelPart extends java.lang.Enum<PlayerModelPart>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAPE
HAT
JACKET
LEFT_PANTS_LEG
LEFT_SLEEVE
RIGHT_PANTS_LEG
RIGHT_SLEEVE
-
Field Summary
Fields Modifier and Type Field Description private int
bit
private java.lang.String
id
private int
mask
private ITextComponent
name
-
Constructor Summary
Constructors Modifier Constructor Description private
PlayerModelPart(int p_i45809_3_, java.lang.String p_i45809_4_)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getId()
int
getMask()
ITextComponent
getName()
static PlayerModelPart
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlayerModelPart[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAPE
public static final PlayerModelPart CAPE
-
JACKET
public static final PlayerModelPart JACKET
-
LEFT_SLEEVE
public static final PlayerModelPart LEFT_SLEEVE
-
RIGHT_SLEEVE
public static final PlayerModelPart RIGHT_SLEEVE
-
LEFT_PANTS_LEG
public static final PlayerModelPart LEFT_PANTS_LEG
-
RIGHT_PANTS_LEG
public static final PlayerModelPart RIGHT_PANTS_LEG
-
HAT
public static final PlayerModelPart HAT
-
-
Field Detail
-
bit
private final int bit
-
mask
private final int mask
-
id
private final java.lang.String id
-
name
private final ITextComponent name
-
-
Method Detail
-
values
public static PlayerModelPart[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlayerModelPart c : PlayerModelPart.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlayerModelPart valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getMask
public int getMask()
-
getId
public java.lang.String getId()
-
getName
public ITextComponent getName()
-
-