Enum Class NbtScanner.Result

java.lang.Object
java.lang.Enum<NbtScanner.Result>
net.minecraft.nbt.scanner.NbtScanner.Result
All Implemented Interfaces:
Serializable, Comparable<NbtScanner.Result>, Constable
Enclosing interface:
NbtScanner

public static enum NbtScanner.Result extends Enum<NbtScanner.Result>
Mappings:
Namespace Name
official rf$b
intermediary net/minecraft/class_6836$class_6838
named net/minecraft/nbt/scanner/NbtScanner$Result
  • Enum Constant Details

    • CONTINUE

      public static final NbtScanner.Result CONTINUE
      Proceed to visit more data of this element.
      Mappings:
      Namespace Name Mixin selector
      official a Lrf$b;a:Lrf$b;
      intermediary field_36253 Lnet/minecraft/class_6836$class_6838;field_36253:Lnet/minecraft/class_6836$class_6838;
      named CONTINUE Lnet/minecraft/nbt/scanner/NbtScanner$Result;CONTINUE:Lnet/minecraft/nbt/scanner/NbtScanner$Result;
    • BREAK

      public static final NbtScanner.Result BREAK
      Skips the current element under scan.
      Mappings:
      Namespace Name Mixin selector
      official b Lrf$b;b:Lrf$b;
      intermediary field_36254 Lnet/minecraft/class_6836$class_6838;field_36254:Lnet/minecraft/class_6836$class_6838;
      named BREAK Lnet/minecraft/nbt/scanner/NbtScanner$Result;BREAK:Lnet/minecraft/nbt/scanner/NbtScanner$Result;
    • HALT

      public static final NbtScanner.Result HALT
      Halts the whole scanning completely.
      Mappings:
      Namespace Name Mixin selector
      official c Lrf$b;c:Lrf$b;
      intermediary field_36255 Lnet/minecraft/class_6836$class_6838;field_36255:Lnet/minecraft/class_6836$class_6838;
      named HALT Lnet/minecraft/nbt/scanner/NbtScanner$Result;HALT:Lnet/minecraft/nbt/scanner/NbtScanner$Result;
  • Constructor Details

    • Result

      private Result()
  • Method Details

    • values

      public static NbtScanner.Result[] 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 NbtScanner.Result 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