Package net.minecraft.nbt.scanner
Enum Class NbtScanner.NestedResult
- All Implemented Interfaces:
Serializable
,Comparable<NbtScanner.NestedResult>
,Constable
- Enclosing interface:
NbtScanner
- Mappings:
Namespace Name named net/minecraft/nbt/scanner/NbtScanner$NestedResult
intermediary net/minecraft/class_6836$class_6837
official vm$a
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic NbtScanner.NestedResult
Returns the enum constant of this class with the specified name.static NbtScanner.NestedResult[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ENTER
Proceeds to visit more data of this element, or to enter this element. (this element is a list element or a sub NBT)- Mappings:
Namespace Name Mixin selector named ENTER
Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;ENTER:Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;
intermediary field_36248
Lnet/minecraft/class_6836$class_6837;field_36248:Lnet/minecraft/class_6836$class_6837;
official a
Lvm$a;a:Lvm$a;
-
SKIP
Skips this element and visit the next list element or sub NBT.- Mappings:
Namespace Name Mixin selector named SKIP
Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;SKIP:Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;
intermediary field_36249
Lnet/minecraft/class_6836$class_6837;field_36249:Lnet/minecraft/class_6836$class_6837;
official b
Lvm$a;b:Lvm$a;
-
BREAK
Skips the whole list or compound NBT currently under scan. Will make a call toNbtScanner.endNested()
.- Mappings:
Namespace Name Mixin selector named BREAK
Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;BREAK:Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;
intermediary field_36250
Lnet/minecraft/class_6836$class_6837;field_36250:Lnet/minecraft/class_6836$class_6837;
official c
Lvm$a;c:Lvm$a;
-
HALT
Halts the whole scanning completely.- Mappings:
Namespace Name Mixin selector named HALT
Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;HALT:Lnet/minecraft/nbt/scanner/NbtScanner$NestedResult;
intermediary field_36251
Lnet/minecraft/class_6836$class_6837;field_36251:Lnet/minecraft/class_6836$class_6837;
official d
Lvm$a;d:Lvm$a;
-
-
Constructor Details
-
NestedResult
private NestedResult()
-
-
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
-