Package net.minecraft.entity
Enum Class Entity.MoveEffect
- All Implemented Interfaces:
Serializable
,Comparable<Entity.MoveEffect>
,Constable
- Enclosing class:
Entity
The move effect represents possible effects of an entity moving, such as
playing sounds, emitting game events, none, or both.
- See Also:
- Mappings:
Namespace Name official bfh$b
intermediary net/minecraft/class_1297$class_5799
named net/minecraft/entity/Entity$MoveEffect
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether this means an entity may emit game events as it moves.boolean
hasAny()
Returns whether this means an entity may emit game events or play sounds as it moves.boolean
Returns whether this means an entity may play sounds as it moves.static Entity.MoveEffect
Returns the enum constant of this class with the specified name.static Entity.MoveEffect[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
- Mappings:
Namespace Name Mixin selector official a
Lbfh$b;a:Lbfh$b;
intermediary field_28630
Lnet/minecraft/class_1297$class_5799;field_28630:Lnet/minecraft/class_1297$class_5799;
named NONE
Lnet/minecraft/entity/Entity$MoveEffect;NONE:Lnet/minecraft/entity/Entity$MoveEffect;
-
SOUNDS
- Mappings:
Namespace Name Mixin selector official b
Lbfh$b;b:Lbfh$b;
intermediary field_28631
Lnet/minecraft/class_1297$class_5799;field_28631:Lnet/minecraft/class_1297$class_5799;
named SOUNDS
Lnet/minecraft/entity/Entity$MoveEffect;SOUNDS:Lnet/minecraft/entity/Entity$MoveEffect;
-
EVENTS
- Mappings:
Namespace Name Mixin selector official c
Lbfh$b;c:Lbfh$b;
intermediary field_28632
Lnet/minecraft/class_1297$class_5799;field_28632:Lnet/minecraft/class_1297$class_5799;
named EVENTS
Lnet/minecraft/entity/Entity$MoveEffect;EVENTS:Lnet/minecraft/entity/Entity$MoveEffect;
-
ALL
- Mappings:
Namespace Name Mixin selector official d
Lbfh$b;d:Lbfh$b;
intermediary field_28633
Lnet/minecraft/class_1297$class_5799;field_28633:Lnet/minecraft/class_1297$class_5799;
named ALL
Lnet/minecraft/entity/Entity$MoveEffect;ALL:Lnet/minecraft/entity/Entity$MoveEffect;
-
-
Field Details
-
sounds
final boolean sounds- Mappings:
Namespace Name Mixin selector official e
Lbfh$b;e:Z
intermediary field_28634
Lnet/minecraft/class_1297$class_5799;field_28634:Z
named sounds
Lnet/minecraft/entity/Entity$MoveEffect;sounds:Z
-
events
final boolean events- Mappings:
Namespace Name Mixin selector official f
Lbfh$b;f:Z
intermediary field_28635
Lnet/minecraft/class_1297$class_5799;field_28635:Z
named events
Lnet/minecraft/entity/Entity$MoveEffect;events:Z
-
-
Constructor Details
-
MoveEffect
private MoveEffect(boolean sounds, boolean events) - Mappings:
Namespace Name Mixin selector official <init>
Lbfh$b;<init>(Ljava/lang/String;IZZ)V
intermediary <init>
Lnet/minecraft/class_1297$class_5799;<init>(Ljava/lang/String;IZZ)V
named <init>
Lnet/minecraft/entity/Entity$MoveEffect;<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
-
hasAny
public boolean hasAny()Returns whether this means an entity may emit game events or play sounds as it moves.- Mappings:
Namespace Name Mixin selector official a
Lbfh$b;a()Z
intermediary method_33576
Lnet/minecraft/class_1297$class_5799;method_33576()Z
named hasAny
Lnet/minecraft/entity/Entity$MoveEffect;hasAny()Z
-
emitsGameEvents
public boolean emitsGameEvents()Returns whether this means an entity may emit game events as it moves.- Mappings:
Namespace Name Mixin selector official b
Lbfh$b;b()Z
intermediary method_33577
Lnet/minecraft/class_1297$class_5799;method_33577()Z
named emitsGameEvents
Lnet/minecraft/entity/Entity$MoveEffect;emitsGameEvents()Z
-
playsSounds
public boolean playsSounds()Returns whether this means an entity may play sounds as it moves.- Mappings:
Namespace Name Mixin selector official c
Lbfh$b;c()Z
intermediary method_33578
Lnet/minecraft/class_1297$class_5799;method_33578()Z
named playsSounds
Lnet/minecraft/entity/Entity$MoveEffect;playsSounds()Z
-