Package net.minecraft.nbt
Record Class NbtInt
java.lang.Object
java.lang.Record
net.minecraft.nbt.NbtInt
- Record Components:
value
-
- All Implemented Interfaces:
AbstractNbtNumber
,NbtElement
,NbtPrimitive
Represents an NBT 32-bit integer. Its type is 0x3.
Instances are immutable.
- Mappings:
Namespace Name named net/minecraft/nbt/NbtInt
intermediary net/minecraft/class_2497
official uf
named value
intermediary comp_3820
official b
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final int
private final int
The field for thevalue
record component.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, SHORT_TYPE, STRING_TYPE
-
Constructor Summary
ConstructorsConstructorDescriptionNbtInt
(int value) Deprecated, for removal: This API element is subject to removal in a future version. -
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.final boolean
Indicates whether some other object is "equal to" this one.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.final int
hashCode()
Returns a hash code value for this object.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 NbtInt
of
(int value) Returns the NBT integer fromvalue
.short
Gets the value as a 16-bit integer.toString()
Returns a string representation of this record class.int
value()
Returns the value of thevalue
record component.void
write
(DataOutput output) Writes the NBT element tooutput
.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.nbt.AbstractNbtNumber
asBoolean, asByte, asDouble, asFloat, asInt, asLong, asNumber, asShort
Methods inherited from interface net.minecraft.nbt.NbtElement
accept, asByteArray, asCompound, asIntArray, asLongArray, asNbtList, asString
-
Field Details
-
value
private final int valueThe field for thevalue
record component. -
SIZE
private static final int SIZE- See Also:
- Mappings:
Namespace Name Mixin selector named SIZE
Lnet/minecraft/nbt/NbtInt;SIZE:I
intermediary field_41724
Lnet/minecraft/class_2497;field_41724:I
official c
Luf;c:I
-
TYPE
- Mappings:
Namespace Name Mixin selector named TYPE
Lnet/minecraft/nbt/NbtInt;TYPE:Lnet/minecraft/nbt/NbtType;
intermediary field_21037
Lnet/minecraft/class_2497;field_21037:Lnet/minecraft/class_4614;
official a
Luf;a:Lvc;
-
-
Constructor Details
-
NbtInt
Deprecated, for removal: This API element is subject to removal in a future version.Creates an instance of aNbtInt
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
of
Returns the NBT integer fromvalue
.- Returns:
- the NBT integer from
value
- Mappings:
Namespace Name Mixin selector named of
Lnet/minecraft/nbt/NbtInt;of(I)Lnet/minecraft/nbt/NbtInt;
intermediary method_23247
Lnet/minecraft/class_2497;method_23247(I)Lnet/minecraft/class_2497;
official a
Luf;a(I)Luf;
-
write
Writes the NBT element tooutput
.- Specified by:
write
in interfaceNbtElement
- 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
Lva;a(Ljava/io/DataOutput;)V
-
getSizeInBytes
public int getSizeInBytes()- Specified by:
getSizeInBytes
in interfaceNbtElement
- 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
Lva;a()I
-
getType
public byte getType()Returns the type of this NBT element.- Specified by:
getType
in interfaceNbtElement
- 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
Lva;b()B
-
getNbtType
Returns the NBT type definition of this NBT element.- Specified by:
getNbtType
in interfaceNbtElement
- 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
Lva;c()Lvc;
-
copy
Description copied from interface:NbtPrimitive
Returns an NBT element of equal value that won't change with this element.- Specified by:
copy
in interfaceNbtElement
- Specified by:
copy
in interfaceNbtPrimitive
- Returns:
- an NBT element of equal value that won't change with this element
- Mappings:
Namespace Name Mixin selector named copy
Lnet/minecraft/nbt/NbtInt;copy()Lnet/minecraft/nbt/NbtInt;
intermediary method_10592
Lnet/minecraft/class_2497;method_10592()Lnet/minecraft/class_2497;
official e
Luf;e()Luf;
-
accept
- Specified by:
accept
in interfaceNbtElement
- 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
Lva;a(Lve;)V
-
longValue
public long longValue()Gets the value as a 64-bit integer.- Specified by:
longValue
in interfaceAbstractNbtNumber
- 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 g
Luq;g()J
-
intValue
public int intValue()Gets the value as a 32-bit integer.- Specified by:
intValue
in interfaceAbstractNbtNumber
- 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 h
Luq;h()I
-
shortValue
public short shortValue()Gets the value as a 16-bit integer.- Specified by:
shortValue
in interfaceAbstractNbtNumber
- 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 i
Luq;i()S
-
byteValue
public byte byteValue()Gets the value as an 8-bit integer.- Specified by:
byteValue
in interfaceAbstractNbtNumber
- 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 j
Luq;j()B
-
doubleValue
public double doubleValue()Gets the value as a 64-bit floating-point number.- Specified by:
doubleValue
in interfaceAbstractNbtNumber
- 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 k
Luq;k()D
-
floatValue
public float floatValue()Gets the value as a 32-bit floating-point number.- Specified by:
floatValue
in interfaceAbstractNbtNumber
- 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 l
Luq;l()F
-
numberValue
Gets the value as a generic number.- Specified by:
numberValue
in interfaceAbstractNbtNumber
- 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 m
Luq;m()Ljava/lang/Number;
-
doAccept
- Specified by:
doAccept
in interfaceNbtElement
- 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
Lva;a(Lux;)Lux$b;
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.- Specified by:
toString
in interfaceNbtElement
- Specified by:
toString
in classRecord
- Returns:
- a string representation of this object
-
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
value
public int value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-