Class AbstractNbtNumber

java.lang.Object
net.minecraft.nbt.AbstractNbtNumber
All Implemented Interfaces:
NbtElement
Direct Known Subclasses:
NbtByte, NbtDouble, NbtFloat, NbtInt, NbtLong, NbtShort

public abstract class AbstractNbtNumber extends Object implements NbtElement
Mappings:
Namespace Name
official rc
intermediary net/minecraft/class_2514
named net/minecraft/nbt/AbstractNbtNumber
  • Constructor Details

    • AbstractNbtNumber

      protected AbstractNbtNumber()
  • Method Details

    • longValue

      public abstract long longValue()
      Gets the value as a 64-bit integer.
      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 abstract int intValue()
      Gets the value as a 32-bit integer.
      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 abstract short shortValue()
      Gets the value as a 16-bit integer.
      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 abstract byte byteValue()
      Gets the value as an 8-bit integer.
      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 abstract double doubleValue()
      Gets the value as a 64-bit floating-point number.
      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 abstract float floatValue()
      Gets the value as a 32-bit floating-point number.
      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 abstract Number numberValue()
      Gets the value as a generic number.
      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;
    • toString

      public String toString()
      Specified by:
      toString in interface NbtElement
      Overrides:
      toString in class Object