Package net.minecraft.nbt
Class NbtByte
java.lang.Object
net.minecraft.nbt.AbstractNbtNumber
net.minecraft.nbt.NbtByte
- All Implemented Interfaces:
NbtElement
Represents an NBT byte. Its type is 0x1.
Instances are immutable.
- Mappings:
Namespace Name named net/minecraft/nbt/NbtByte
intermediary net/minecraft/class_2481
official uq
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final NbtByte
The NBT byte representing1
.private static final int
private final byte
static final NbtByte
The NBT byte representing0
.Fields inherited from interface net.minecraft.nbt.NbtElement
BYTE_ARRAY_TYPE, BYTE_TYPE, COMPOUND_TYPE, DOUBLE_TYPE, END_TYPE, field_33246, field_33247, field_33248, field_33249, FLOAT_TYPE, INT_ARRAY_TYPE, INT_TYPE, LIST_TYPE, LONG_ARRAY_TYPE, LONG_TYPE, MAX_DEPTH, NUMBER_TYPE, SHORT_TYPE, STRING_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(NbtElementVisitor visitor) byte
Gets the value as an 8-bit integer.copy()
Returns an NBT element of equal value that won't change with this element.doAccept
(NbtScanner visitor) double
Gets the value as a 64-bit floating-point number.boolean
float
Gets the value as a 32-bit floating-point number.Returns the NBT type definition of this NBT element.int
byte
getType()
Returns the type of this NBT element.int
hashCode()
int
intValue()
Gets the value as a 32-bit integer.long
Gets the value as a 64-bit integer.Gets the value as a generic number.static NbtByte
of
(boolean value) Returns the NBT byte representing the booleanvalue
.static NbtByte
of
(byte value) Returns the NBT byte fromvalue
.short
Gets the value as a 16-bit integer.void
write
(DataOutput output) Writes the NBT element tooutput
.Methods inherited from class net.minecraft.nbt.AbstractNbtNumber
toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.nbt.NbtElement
accept, asString
-
Field Details
-
SIZE
private static final int SIZE- See Also:
- Mappings:
Namespace Name Mixin selector named SIZE
Lnet/minecraft/nbt/NbtByte;SIZE:I
intermediary field_41717
Lnet/minecraft/class_2481;field_41717:I
official w
Luq;w:I
-
TYPE
- Mappings:
Namespace Name Mixin selector named TYPE
Lnet/minecraft/nbt/NbtByte;TYPE:Lnet/minecraft/nbt/NbtType;
intermediary field_21025
Lnet/minecraft/class_2481;field_21025:Lnet/minecraft/class_4614;
official a
Luq;a:Lvr;
-
ZERO
The NBT byte representing0
.- API Note:
- This is often used to indicate a false boolean value.
- Mappings:
Namespace Name Mixin selector named ZERO
Lnet/minecraft/nbt/NbtByte;ZERO:Lnet/minecraft/nbt/NbtByte;
intermediary field_21026
Lnet/minecraft/class_2481;field_21026:Lnet/minecraft/class_2481;
official b
Luq;b:Luq;
-
ONE
The NBT byte representing1
.- API Note:
- This is often used to indicate a true boolean value.
- Mappings:
Namespace Name Mixin selector named ONE
Lnet/minecraft/nbt/NbtByte;ONE:Lnet/minecraft/nbt/NbtByte;
intermediary field_21027
Lnet/minecraft/class_2481;field_21027:Lnet/minecraft/class_2481;
official c
Luq;c:Luq;
-
value
private final byte value- Mappings:
Namespace Name Mixin selector named value
Lnet/minecraft/nbt/NbtByte;value:B
intermediary field_11498
Lnet/minecraft/class_2481;field_11498:B
official x
Luq;x:B
-
-
Constructor Details
-
NbtByte
NbtByte(byte value) - Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/nbt/NbtByte;<init>(B)V
intermediary <init>
Lnet/minecraft/class_2481;<init>(B)V
official <init>
Luq;<init>(B)V
-
-
Method Details
-
of
Returns the NBT byte fromvalue
.- Returns:
- the NBT byte from
value
- Implementation Note:
- This returns the value from the cache.
- Mappings:
Namespace Name Mixin selector named of
Lnet/minecraft/nbt/NbtByte;of(B)Lnet/minecraft/nbt/NbtByte;
intermediary method_23233
Lnet/minecraft/class_2481;method_23233(B)Lnet/minecraft/class_2481;
official a
Luq;a(B)Luq;
-
of
Returns the NBT byte representing the booleanvalue
.- Returns:
- the NBT byte representing the boolean
value
- Mappings:
Namespace Name Mixin selector named of
Lnet/minecraft/nbt/NbtByte;of(Z)Lnet/minecraft/nbt/NbtByte;
intermediary method_23234
Lnet/minecraft/class_2481;method_23234(Z)Lnet/minecraft/class_2481;
official a
Luq;a(Z)Luq;
-
write
Writes the NBT element tooutput
.- Throws:
IOException
- API Note:
- This is a low-level method for serializing NBT elements; consider using
NbtIo
,NbtOps
, orPacketByteBuf.writeNbt(net.minecraft.nbt.NbtElement)
instead. - Mappings:
Namespace Name Mixin selector named write
Lnet/minecraft/nbt/NbtElement;write(Ljava/io/DataOutput;)V
intermediary method_10713
Lnet/minecraft/class_2520;method_10713(Ljava/io/DataOutput;)V
official a
Lvp;a(Ljava/io/DataOutput;)V
-
getSizeInBytes
public int getSizeInBytes()- Mappings:
Namespace Name Mixin selector named getSizeInBytes
Lnet/minecraft/nbt/NbtElement;getSizeInBytes()I
intermediary method_47988
Lnet/minecraft/class_2520;method_47988()I
official a
Lvp;a()I
-
getType
public byte getType()Returns the type of this NBT element.- Returns:
- the type of this NBT element
- Mappings:
Namespace Name Mixin selector named getType
Lnet/minecraft/nbt/NbtElement;getType()B
intermediary method_10711
Lnet/minecraft/class_2520;method_10711()B
official b
Lvp;b()B
-
getNbtType
Returns the NBT type definition of this NBT element.- Returns:
- the NBT type definition of this NBT element
- Mappings:
Namespace Name Mixin selector named getNbtType
Lnet/minecraft/nbt/NbtElement;getNbtType()Lnet/minecraft/nbt/NbtType;
intermediary method_23258
Lnet/minecraft/class_2520;method_23258()Lnet/minecraft/class_4614;
official c
Lvp;c()Lvr;
-
copy
Description copied from interface:NbtElement
Returns an NBT element of equal value that won't change with this element.- Returns:
- an NBT element of equal value that won't change with this element
- Mappings:
Namespace Name Mixin selector named copy
Lnet/minecraft/nbt/NbtByte;copy()Lnet/minecraft/nbt/NbtByte;
intermediary method_10530
Lnet/minecraft/class_2481;method_10530()Lnet/minecraft/class_2481;
official e
Luq;e()Luq;
-
equals
-
hashCode
public int hashCode() -
accept
- Mappings:
Namespace Name Mixin selector named accept
Lnet/minecraft/nbt/NbtElement;accept(Lnet/minecraft/nbt/visitor/NbtElementVisitor;)V
intermediary method_32289
Lnet/minecraft/class_2520;method_32289(Lnet/minecraft/class_5627;)V
official a
Lvp;a(Lvt;)V
-
longValue
public long longValue()Gets the value as a 64-bit integer.- Specified by:
longValue
in classAbstractNbtNumber
- Returns:
- the value as a long
- Mappings:
Namespace Name Mixin selector named longValue
Lnet/minecraft/nbt/AbstractNbtNumber;longValue()J
intermediary method_10699
Lnet/minecraft/class_2514;method_10699()J
official f
Lvi;f()J
-
intValue
public int intValue()Gets the value as a 32-bit integer.- Specified by:
intValue
in classAbstractNbtNumber
- Returns:
- the value as an int
- Mappings:
Namespace Name Mixin selector named intValue
Lnet/minecraft/nbt/AbstractNbtNumber;intValue()I
intermediary method_10701
Lnet/minecraft/class_2514;method_10701()I
official g
Lvi;g()I
-
shortValue
public short shortValue()Gets the value as a 16-bit integer.- Specified by:
shortValue
in classAbstractNbtNumber
- Returns:
- the value as a short
- Mappings:
Namespace Name Mixin selector named shortValue
Lnet/minecraft/nbt/AbstractNbtNumber;shortValue()S
intermediary method_10696
Lnet/minecraft/class_2514;method_10696()S
official h
Lvi;h()S
-
byteValue
public byte byteValue()Gets the value as an 8-bit integer.- Specified by:
byteValue
in classAbstractNbtNumber
- Returns:
- the value as a byte
- Mappings:
Namespace Name Mixin selector named byteValue
Lnet/minecraft/nbt/AbstractNbtNumber;byteValue()B
intermediary method_10698
Lnet/minecraft/class_2514;method_10698()B
official i
Lvi;i()B
-
doubleValue
public double doubleValue()Gets the value as a 64-bit floating-point number.- Specified by:
doubleValue
in classAbstractNbtNumber
- Returns:
- the value as a double
- Mappings:
Namespace Name Mixin selector named doubleValue
Lnet/minecraft/nbt/AbstractNbtNumber;doubleValue()D
intermediary method_10697
Lnet/minecraft/class_2514;method_10697()D
official j
Lvi;j()D
-
floatValue
public float floatValue()Gets the value as a 32-bit floating-point number.- Specified by:
floatValue
in classAbstractNbtNumber
- Returns:
- the value as a float
- Mappings:
Namespace Name Mixin selector named floatValue
Lnet/minecraft/nbt/AbstractNbtNumber;floatValue()F
intermediary method_10700
Lnet/minecraft/class_2514;method_10700()F
official k
Lvi;k()F
-
numberValue
Gets the value as a generic number.- Specified by:
numberValue
in classAbstractNbtNumber
- Returns:
- the value as a
Number
- Mappings:
Namespace Name Mixin selector named numberValue
Lnet/minecraft/nbt/AbstractNbtNumber;numberValue()Ljava/lang/Number;
intermediary method_10702
Lnet/minecraft/class_2514;method_10702()Ljava/lang/Number;
official l
Lvi;l()Ljava/lang/Number;
-
doAccept
- Mappings:
Namespace Name Mixin selector named doAccept
Lnet/minecraft/nbt/NbtElement;doAccept(Lnet/minecraft/nbt/scanner/NbtScanner;)Lnet/minecraft/nbt/scanner/NbtScanner$Result;
intermediary method_39850
Lnet/minecraft/class_2520;method_39850(Lnet/minecraft/class_6836;)Lnet/minecraft/class_6836$class_6838;
official a
Lvp;a(Lvm;)Lvm$b;
-