Package net.minecraft.entity
Enum Class Entity.RemovalReason
- All Implemented Interfaces:
Serializable,Comparable<Entity.RemovalReason>,Constable
- Enclosing class:
Entity
The reason of the entity's removal.
- See Also:
- Mappings:
Namespace Name intermediary net/minecraft/class_1297$class_5529official bfh$cnamed net/minecraft/entity/Entity$RemovalReason
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe entity changed dimension.The entity is discarded (despawned).The entity is killed.The entity is unloaded to chunk.The entity is unloaded because the player was riding it and the player disconnected. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether the entity should be destroyed or not.booleanReturns whether the entity should be saved or not.static Entity.RemovalReasonReturns the enum constant of this class with the specified name.static Entity.RemovalReason[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
KILLED
The entity is killed.- Mappings:
Namespace Name Mixin selector intermediary field_26998Lnet/minecraft/class_1297$class_5529;field_26998:Lnet/minecraft/class_1297$class_5529;official aLbfh$c;a:Lbfh$c;named KILLEDLnet/minecraft/entity/Entity$RemovalReason;KILLED:Lnet/minecraft/entity/Entity$RemovalReason;
-
DISCARDED
The entity is discarded (despawned).- Mappings:
Namespace Name Mixin selector intermediary field_26999Lnet/minecraft/class_1297$class_5529;field_26999:Lnet/minecraft/class_1297$class_5529;official bLbfh$c;b:Lbfh$c;named DISCARDEDLnet/minecraft/entity/Entity$RemovalReason;DISCARDED:Lnet/minecraft/entity/Entity$RemovalReason;
-
UNLOADED_TO_CHUNK
The entity is unloaded to chunk.The entity should be saved.
- Mappings:
Namespace Name Mixin selector intermediary field_27000Lnet/minecraft/class_1297$class_5529;field_27000:Lnet/minecraft/class_1297$class_5529;official cLbfh$c;c:Lbfh$c;named UNLOADED_TO_CHUNKLnet/minecraft/entity/Entity$RemovalReason;UNLOADED_TO_CHUNK:Lnet/minecraft/entity/Entity$RemovalReason;
-
UNLOADED_WITH_PLAYER
The entity is unloaded because the player was riding it and the player disconnected.- Mappings:
Namespace Name Mixin selector intermediary field_27001Lnet/minecraft/class_1297$class_5529;field_27001:Lnet/minecraft/class_1297$class_5529;official dLbfh$c;d:Lbfh$c;named UNLOADED_WITH_PLAYERLnet/minecraft/entity/Entity$RemovalReason;UNLOADED_WITH_PLAYER:Lnet/minecraft/entity/Entity$RemovalReason;
-
CHANGED_DIMENSION
The entity changed dimension.- Mappings:
Namespace Name Mixin selector intermediary field_27002Lnet/minecraft/class_1297$class_5529;field_27002:Lnet/minecraft/class_1297$class_5529;official eLbfh$c;e:Lbfh$c;named CHANGED_DIMENSIONLnet/minecraft/entity/Entity$RemovalReason;CHANGED_DIMENSION:Lnet/minecraft/entity/Entity$RemovalReason;
-
-
Field Details
-
destroy
private final boolean destroy- Mappings:
Namespace Name Mixin selector intermediary field_27003Lnet/minecraft/class_1297$class_5529;field_27003:Zofficial fLbfh$c;f:Znamed destroyLnet/minecraft/entity/Entity$RemovalReason;destroy:Z
-
save
private final boolean save- Mappings:
Namespace Name Mixin selector intermediary field_27004Lnet/minecraft/class_1297$class_5529;field_27004:Zofficial gLbfh$c;g:Znamed saveLnet/minecraft/entity/Entity$RemovalReason;save:Z
-
-
Constructor Details
-
RemovalReason
private RemovalReason(boolean destroy, boolean save) - Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_1297$class_5529;<init>(Ljava/lang/String;IZZ)Vofficial <init>Lbfh$c;<init>(Ljava/lang/String;IZZ)Vnamed <init>Lnet/minecraft/entity/Entity$RemovalReason;<init>(Ljava/lang/String;IZZ)V
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
shouldDestroy
public boolean shouldDestroy()Returns whether the entity should be destroyed or not.If an entity should be destroyed, then the entity should not be re-used and any external data on the entity will be cleared.
- Mappings:
Namespace Name Mixin selector intermediary method_31486Lnet/minecraft/class_1297$class_5529;method_31486()Zofficial aLbfh$c;a()Znamed shouldDestroyLnet/minecraft/entity/Entity$RemovalReason;shouldDestroy()Z
-
shouldSave
public boolean shouldSave()Returns whether the entity should be saved or not.- Mappings:
Namespace Name Mixin selector intermediary method_31487Lnet/minecraft/class_1297$class_5529;method_31487()Zofficial bLbfh$c;b()Znamed shouldSaveLnet/minecraft/entity/Entity$RemovalReason;shouldSave()Z
-