Enum Class Entity.MoveEffect

java.lang.Object
java.lang.Enum<Entity.MoveEffect>
net.minecraft.entity.Entity.MoveEffect
All Implemented Interfaces:
Serializable, Comparable<Entity.MoveEffect>, Constable
Enclosing class:
Entity

public static enum Entity.MoveEffect extends Enum<Entity.MoveEffect>
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 bdr$b
intermediary net/minecraft/class_1297$class_5799
named net/minecraft/entity/Entity$MoveEffect
  • Enum Constant Details

    • NONE

      public static final Entity.MoveEffect NONE
      Mappings:
      Namespace Name Mixin selector
      official a Lbdr$b;a:Lbdr$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

      public static final Entity.MoveEffect SOUNDS
      Mappings:
      Namespace Name Mixin selector
      official b Lbdr$b;b:Lbdr$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

      public static final Entity.MoveEffect EVENTS
      Mappings:
      Namespace Name Mixin selector
      official c Lbdr$b;c:Lbdr$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

      public static final Entity.MoveEffect ALL
      Mappings:
      Namespace Name Mixin selector
      official d Lbdr$b;d:Lbdr$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 Lbdr$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 Lbdr$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> Lbdr$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

      public static Entity.MoveEffect[] 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

      public static Entity.MoveEffect valueOf(String name)
      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 name
      NullPointerException - 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 Lbdr$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 Lbdr$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 Lbdr$b;c()Z
      intermediary method_33578 Lnet/minecraft/class_1297$class_5799;method_33578()Z
      named playsSounds Lnet/minecraft/entity/Entity$MoveEffect;playsSounds()Z