Package net.minecraft.entity.item
Enum EntityMinecart.EnumMinecartType
- java.lang.Object
-
- java.lang.Enum<EntityMinecart.EnumMinecartType>
-
- net.minecraft.entity.item.EntityMinecart.EnumMinecartType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EntityMinecart.EnumMinecartType>
- Enclosing class:
- EntityMinecart
public static enum EntityMinecart.EnumMinecartType extends java.lang.Enum<EntityMinecart.EnumMinecartType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntityMinecart.EnumMinecartType
byNetworkID(int id)
java.lang.String
getName()
+ Gets the name of this command sender (usually username, but possibly "Rcon")int
getNetworkID()
static EntityMinecart.EnumMinecartType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EntityMinecart.EnumMinecartType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RIDEABLE
public static final EntityMinecart.EnumMinecartType RIDEABLE
-
CHEST
public static final EntityMinecart.EnumMinecartType CHEST
-
FURNACE
public static final EntityMinecart.EnumMinecartType FURNACE
-
TNT
public static final EntityMinecart.EnumMinecartType TNT
-
SPAWNER
public static final EntityMinecart.EnumMinecartType SPAWNER
-
HOPPER
public static final EntityMinecart.EnumMinecartType HOPPER
-
COMMAND_BLOCK
public static final EntityMinecart.EnumMinecartType COMMAND_BLOCK
-
-
Method Detail
-
values
public static EntityMinecart.EnumMinecartType[] 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 (EntityMinecart.EnumMinecartType c : EntityMinecart.EnumMinecartType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityMinecart.EnumMinecartType 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
-
getNetworkID
public int getNetworkID()
-
getName
public java.lang.String getName()
+ Gets the name of this command sender (usually username, but possibly "Rcon")
-
byNetworkID
public static EntityMinecart.EnumMinecartType byNetworkID(int id)
-
-