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 official biq$c
intermediary net/minecraft/class_1297$class_5529
named 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 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
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether the entity should be destroyed or not.boolean
Returns whether the entity should be saved or not.static Entity.RemovalReason
Returns 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 official a
Lbiq$c;a:Lbiq$c;
intermediary field_26998
Lnet/minecraft/class_1297$class_5529;field_26998:Lnet/minecraft/class_1297$class_5529;
named KILLED
Lnet/minecraft/entity/Entity$RemovalReason;KILLED:Lnet/minecraft/entity/Entity$RemovalReason;
-
DISCARDED
The entity is discarded (despawned).- Mappings:
Namespace Name Mixin selector official b
Lbiq$c;b:Lbiq$c;
intermediary field_26999
Lnet/minecraft/class_1297$class_5529;field_26999:Lnet/minecraft/class_1297$class_5529;
named DISCARDED
Lnet/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 official c
Lbiq$c;c:Lbiq$c;
intermediary field_27000
Lnet/minecraft/class_1297$class_5529;field_27000:Lnet/minecraft/class_1297$class_5529;
named UNLOADED_TO_CHUNK
Lnet/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 official d
Lbiq$c;d:Lbiq$c;
intermediary field_27001
Lnet/minecraft/class_1297$class_5529;field_27001:Lnet/minecraft/class_1297$class_5529;
named UNLOADED_WITH_PLAYER
Lnet/minecraft/entity/Entity$RemovalReason;UNLOADED_WITH_PLAYER:Lnet/minecraft/entity/Entity$RemovalReason;
-
CHANGED_DIMENSION
The entity changed dimension.- Mappings:
Namespace Name Mixin selector official e
Lbiq$c;e:Lbiq$c;
intermediary field_27002
Lnet/minecraft/class_1297$class_5529;field_27002:Lnet/minecraft/class_1297$class_5529;
named CHANGED_DIMENSION
Lnet/minecraft/entity/Entity$RemovalReason;CHANGED_DIMENSION:Lnet/minecraft/entity/Entity$RemovalReason;
-
-
Field Details
-
destroy
private final boolean destroy- Mappings:
Namespace Name Mixin selector official f
Lbiq$c;f:Z
intermediary field_27003
Lnet/minecraft/class_1297$class_5529;field_27003:Z
named destroy
Lnet/minecraft/entity/Entity$RemovalReason;destroy:Z
-
save
private final boolean save- Mappings:
Namespace Name Mixin selector official g
Lbiq$c;g:Z
intermediary field_27004
Lnet/minecraft/class_1297$class_5529;field_27004:Z
named save
Lnet/minecraft/entity/Entity$RemovalReason;save:Z
-
-
Constructor Details
-
RemovalReason
private RemovalReason(boolean destroy, boolean save) - Mappings:
Namespace Name Mixin selector official <init>
Lbiq$c;<init>(Ljava/lang/String;IZZ)V
intermediary <init>
Lnet/minecraft/class_1297$class_5529;<init>(Ljava/lang/String;IZZ)V
named <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 official a
Lbiq$c;a()Z
intermediary method_31486
Lnet/minecraft/class_1297$class_5529;method_31486()Z
named shouldDestroy
Lnet/minecraft/entity/Entity$RemovalReason;shouldDestroy()Z
-
shouldSave
public boolean shouldSave()Returns whether the entity should be saved or not.- Mappings:
Namespace Name Mixin selector official b
Lbiq$c;b()Z
intermediary method_31487
Lnet/minecraft/class_1297$class_5529;method_31487()Z
named shouldSave
Lnet/minecraft/entity/Entity$RemovalReason;shouldSave()Z
-