Enum Class CommandManager.RegistrationEnvironment

java.lang.Object
java.lang.Enum<CommandManager.RegistrationEnvironment>
net.minecraft.server.command.CommandManager.RegistrationEnvironment
All Implemented Interfaces:
Serializable, Comparable<CommandManager.RegistrationEnvironment>, Constable
Enclosing class:
CommandManager

public static enum CommandManager.RegistrationEnvironment extends Enum<CommandManager.RegistrationEnvironment>
Describes the environment in which commands are registered.
Mappings:
Namespace Name
official dp$a
intermediary net/minecraft/class_2170$class_5364
named net/minecraft/server/command/CommandManager$RegistrationEnvironment
  • Enum Constant Details

    • ALL

      public static final CommandManager.RegistrationEnvironment ALL
      Mappings:
      Namespace Name Mixin selector
      official a Ldp$a;a:Ldp$a;
      intermediary field_25419 Lnet/minecraft/class_2170$class_5364;field_25419:Lnet/minecraft/class_2170$class_5364;
      named ALL Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;ALL:Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;
    • DEDICATED

      public static final CommandManager.RegistrationEnvironment DEDICATED
      Mappings:
      Namespace Name Mixin selector
      official b Ldp$a;b:Ldp$a;
      intermediary field_25420 Lnet/minecraft/class_2170$class_5364;field_25420:Lnet/minecraft/class_2170$class_5364;
      named DEDICATED Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;DEDICATED:Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;
    • INTEGRATED

      public static final CommandManager.RegistrationEnvironment INTEGRATED
      Mappings:
      Namespace Name Mixin selector
      official c Ldp$a;c:Ldp$a;
      intermediary field_25421 Lnet/minecraft/class_2170$class_5364;field_25421:Lnet/minecraft/class_2170$class_5364;
      named INTEGRATED Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;INTEGRATED:Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;
  • Field Details

    • integrated

      final boolean integrated
      Mappings:
      Namespace Name Mixin selector
      official d Ldp$a;d:Z
      intermediary field_25422 Lnet/minecraft/class_2170$class_5364;field_25422:Z
      named integrated Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;integrated:Z
    • dedicated

      final boolean dedicated
      Mappings:
      Namespace Name Mixin selector
      official e Ldp$a;e:Z
      intermediary field_25423 Lnet/minecraft/class_2170$class_5364;field_25423:Z
      named dedicated Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;dedicated:Z
  • Constructor Details

    • RegistrationEnvironment

      private RegistrationEnvironment(boolean integrated, boolean dedicated)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldp$a;<init>(Ljava/lang/String;IZZ)V
      intermediary <init> Lnet/minecraft/class_2170$class_5364;<init>(Ljava/lang/String;IZZ)V
      named <init> Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;<init>(Ljava/lang/String;IZZ)V
  • Method Details

    • values

      public static CommandManager.RegistrationEnvironment[] 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 CommandManager.RegistrationEnvironment 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