Class NbtFloat

All Implemented Interfaces:
NbtElement

public class NbtFloat extends AbstractNbtNumber
Represents an NBT 32-bit floating-point number. Its type is 0x5. Instances are immutable.
Mappings:
Namespace Name
official qs
intermediary net/minecraft/class_2494
named net/minecraft/nbt/NbtFloat
  • Field Details

    • SIZE

      private static final int SIZE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official c Lqs;c:I
      intermediary field_41722 Lnet/minecraft/class_2494;field_41722:I
      named SIZE Lnet/minecraft/nbt/NbtFloat;SIZE:I
    • ZERO

      public static final NbtFloat ZERO
      The NBT float representing 0.0f.
      Mappings:
      Namespace Name Mixin selector
      official a Lqs;a:Lqs;
      intermediary field_21034 Lnet/minecraft/class_2494;field_21034:Lnet/minecraft/class_2494;
      named ZERO Lnet/minecraft/nbt/NbtFloat;ZERO:Lnet/minecraft/nbt/NbtFloat;
    • TYPE

      public static final NbtType<NbtFloat> TYPE
      Mappings:
      Namespace Name Mixin selector
      official b Lqs;b:Lrk;
      intermediary field_21035 Lnet/minecraft/class_2494;field_21035:Lnet/minecraft/class_4614;
      named TYPE Lnet/minecraft/nbt/NbtFloat;TYPE:Lnet/minecraft/nbt/NbtType;
    • value

      private final float value
      Mappings:
      Namespace Name Mixin selector
      official w Lqs;w:F
      intermediary field_11523 Lnet/minecraft/class_2494;field_11523:F
      named value Lnet/minecraft/nbt/NbtFloat;value:F
  • Constructor Details

    • NbtFloat

      private NbtFloat(float value)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lqs;<init>(F)V
      intermediary <init> Lnet/minecraft/class_2494;<init>(F)V
      named <init> Lnet/minecraft/nbt/NbtFloat;<init>(F)V
  • Method Details

    • of

      public static NbtFloat of(float value)
      Returns the NBT float from value.
      Returns:
      the NBT float from value
      Mappings:
      Namespace Name Mixin selector
      official a Lqs;a(F)Lqs;
      intermediary method_23244 Lnet/minecraft/class_2494;method_23244(F)Lnet/minecraft/class_2494;
      named of Lnet/minecraft/nbt/NbtFloat;of(F)Lnet/minecraft/nbt/NbtFloat;
    • write

      public void write(DataOutput output) throws IOException
      Writes the NBT element to output.
      Throws:
      IOException
      Mappings:
      Namespace Name Mixin selector
      official a Lri;a(Ljava/io/DataOutput;)V
      intermediary method_10713 Lnet/minecraft/class_2520;method_10713(Ljava/io/DataOutput;)V
      named write Lnet/minecraft/nbt/NbtElement;write(Ljava/io/DataOutput;)V
    • getSizeInBytes

      public int getSizeInBytes()
      Mappings:
      Namespace Name Mixin selector
      official a Lri;a()I
      intermediary method_47988 Lnet/minecraft/class_2520;method_47988()I
      named getSizeInBytes Lnet/minecraft/nbt/NbtElement;getSizeInBytes()I
    • getType

      public byte getType()
      Returns the type of this NBT element.
      Returns:
      the type of this NBT element
      Mappings:
      Namespace Name Mixin selector
      official b Lri;b()B
      intermediary method_10711 Lnet/minecraft/class_2520;method_10711()B
      named getType Lnet/minecraft/nbt/NbtElement;getType()B
    • getNbtType

      public NbtType<NbtFloat> getNbtType()
      Returns the NBT type definition of this NBT element.
      Returns:
      the NBT type definition of this NBT element
      Mappings:
      Namespace Name Mixin selector
      official c Lri;c()Lrk;
      intermediary method_23258 Lnet/minecraft/class_2520;method_23258()Lnet/minecraft/class_4614;
      named getNbtType Lnet/minecraft/nbt/NbtElement;getNbtType()Lnet/minecraft/nbt/NbtType;
    • copy

      public NbtFloat 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
      official e Lqs;e()Lqs;
      intermediary method_10587 Lnet/minecraft/class_2494;method_10587()Lnet/minecraft/class_2494;
      named copy Lnet/minecraft/nbt/NbtFloat;copy()Lnet/minecraft/nbt/NbtFloat;
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
      Mappings:
      Namespace Name Mixin selector
      official equals Lqs;equals(Ljava/lang/Object;)Z
      intermediary equals Lnet/minecraft/class_2494;equals(Ljava/lang/Object;)Z
      named equals Lnet/minecraft/nbt/NbtFloat;equals(Ljava/lang/Object;)Z
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • accept

      public void accept(NbtElementVisitor visitor)
      Mappings:
      Namespace Name Mixin selector
      official a Lri;a(Lrm;)V
      intermediary method_32289 Lnet/minecraft/class_2520;method_32289(Lnet/minecraft/class_5627;)V
      named accept Lnet/minecraft/nbt/NbtElement;accept(Lnet/minecraft/nbt/visitor/NbtElementVisitor;)V
    • longValue

      public long longValue()
      Gets the value as a 64-bit integer.
      Specified by:
      longValue in class AbstractNbtNumber
      Returns:
      the value as a long
      Mappings:
      Namespace Name Mixin selector
      official f Lrc;f()J
      intermediary method_10699 Lnet/minecraft/class_2514;method_10699()J
      named longValue Lnet/minecraft/nbt/AbstractNbtNumber;longValue()J
    • intValue

      public int intValue()
      Gets the value as a 32-bit integer.
      Specified by:
      intValue in class AbstractNbtNumber
      Returns:
      the value as an int
      Mappings:
      Namespace Name Mixin selector
      official g Lrc;g()I
      intermediary method_10701 Lnet/minecraft/class_2514;method_10701()I
      named intValue Lnet/minecraft/nbt/AbstractNbtNumber;intValue()I
    • shortValue

      public short shortValue()
      Gets the value as a 16-bit integer.
      Specified by:
      shortValue in class AbstractNbtNumber
      Returns:
      the value as a short
      Mappings:
      Namespace Name Mixin selector
      official h Lrc;h()S
      intermediary method_10696 Lnet/minecraft/class_2514;method_10696()S
      named shortValue Lnet/minecraft/nbt/AbstractNbtNumber;shortValue()S
    • byteValue

      public byte byteValue()
      Gets the value as an 8-bit integer.
      Specified by:
      byteValue in class AbstractNbtNumber
      Returns:
      the value as a byte
      Mappings:
      Namespace Name Mixin selector
      official i Lrc;i()B
      intermediary method_10698 Lnet/minecraft/class_2514;method_10698()B
      named byteValue Lnet/minecraft/nbt/AbstractNbtNumber;byteValue()B
    • doubleValue

      public double doubleValue()
      Gets the value as a 64-bit floating-point number.
      Specified by:
      doubleValue in class AbstractNbtNumber
      Returns:
      the value as a double
      Mappings:
      Namespace Name Mixin selector
      official j Lrc;j()D
      intermediary method_10697 Lnet/minecraft/class_2514;method_10697()D
      named doubleValue Lnet/minecraft/nbt/AbstractNbtNumber;doubleValue()D
    • floatValue

      public float floatValue()
      Gets the value as a 32-bit floating-point number.
      Specified by:
      floatValue in class AbstractNbtNumber
      Returns:
      the value as a float
      Mappings:
      Namespace Name Mixin selector
      official k Lrc;k()F
      intermediary method_10700 Lnet/minecraft/class_2514;method_10700()F
      named floatValue Lnet/minecraft/nbt/AbstractNbtNumber;floatValue()F
    • numberValue

      public Number numberValue()
      Gets the value as a generic number.
      Specified by:
      numberValue in class AbstractNbtNumber
      Returns:
      the value as a Number
      Mappings:
      Namespace Name Mixin selector
      official l Lrc;l()Ljava/lang/Number;
      intermediary method_10702 Lnet/minecraft/class_2514;method_10702()Ljava/lang/Number;
      named numberValue Lnet/minecraft/nbt/AbstractNbtNumber;numberValue()Ljava/lang/Number;
    • doAccept

      public NbtScanner.Result doAccept(NbtScanner visitor)
      Mappings:
      Namespace Name Mixin selector
      official a Lri;a(Lrf;)Lrf$b;
      intermediary method_39850 Lnet/minecraft/class_2520;method_39850(Lnet/minecraft/class_6836;)Lnet/minecraft/class_6836$class_6838;
      named doAccept Lnet/minecraft/nbt/NbtElement;doAccept(Lnet/minecraft/nbt/scanner/NbtScanner;)Lnet/minecraft/nbt/scanner/NbtScanner$Result;