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 - bfj$c- intermediary - net/minecraft/class_1297$class_5529- named - net/minecraft/entity/Entity$RemovalReason
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum 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 SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
KILLEDThe entity is killed.- Mappings:
- Namespace - Name - Mixin selector - official - a- Lbfj$c;a:Lbfj$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;
 
- 
DISCARDEDThe entity is discarded (despawned).- Mappings:
- Namespace - Name - Mixin selector - official - b- Lbfj$c;b:Lbfj$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_CHUNKThe entity is unloaded to chunk.The entity should be saved. - Mappings:
- Namespace - Name - Mixin selector - official - c- Lbfj$c;c:Lbfj$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_PLAYERThe entity is unloaded because the player was riding it and the player disconnected.- Mappings:
- Namespace - Name - Mixin selector - official - d- Lbfj$c;d:Lbfj$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_DIMENSIONThe entity changed dimension.- Mappings:
- Namespace - Name - Mixin selector - official - e- Lbfj$c;e:Lbfj$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- 
destroyprivate final boolean destroy- Mappings:
- Namespace - Name - Mixin selector - official - f- Lbfj$c;f:Z- intermediary - field_27003- Lnet/minecraft/class_1297$class_5529;field_27003:Z- named - destroy- Lnet/minecraft/entity/Entity$RemovalReason;destroy:Z
 
- 
saveprivate final boolean save- Mappings:
- Namespace - Name - Mixin selector - official - g- Lbfj$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- 
RemovalReasonprivate RemovalReason(boolean destroy, boolean save) - Mappings:
- Namespace - Name - Mixin selector - official - <init>- Lbfj$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- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
shouldDestroypublic 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- Lbfj$c;a()Z- intermediary - method_31486- Lnet/minecraft/class_1297$class_5529;method_31486()Z- named - shouldDestroy- Lnet/minecraft/entity/Entity$RemovalReason;shouldDestroy()Z
 
- 
shouldSavepublic boolean shouldSave()Returns whether the entity should be saved or not.- Mappings:
- Namespace - Name - Mixin selector - official - b- Lbfj$c;b()Z- intermediary - method_31487- Lnet/minecraft/class_1297$class_5529;method_31487()Z- named - shouldSave- Lnet/minecraft/entity/Entity$RemovalReason;shouldSave()Z
 
 
-