Package net.minecraft.nbt
Class AbstractNbtNumber
java.lang.Object
net.minecraft.nbt.AbstractNbtNumber
- All Implemented Interfaces:
 NbtElement
Represents an NBT number.
 
 The type NUMBER_TYPE can be used to
 check for the existence of any numeric element in a NBT compound object.
- Mappings:
 Namespace Name official reintermediary net/minecraft/class_2514named net/minecraft/nbt/AbstractNbtNumber
- 
Field Summary
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
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionabstract byteGets the value as an 8-bit integer.abstract doubleGets the value as a 64-bit floating-point number.abstract floatGets the value as a 32-bit floating-point number.abstract intintValue()Gets the value as a 32-bit integer.abstract longGets the value as a 64-bit integer.abstract NumberGets the value as a generic number.abstract shortGets the value as a 16-bit integer.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.nbt.NbtElement
accept, accept, asString, copy, doAccept, getNbtType, getSizeInBytes, getType, write 
- 
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 fLre;f()Jintermediary method_10699Lnet/minecraft/class_2514;method_10699()Jnamed longValueLnet/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 gLre;g()Iintermediary method_10701Lnet/minecraft/class_2514;method_10701()Inamed intValueLnet/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 hLre;h()Sintermediary method_10696Lnet/minecraft/class_2514;method_10696()Snamed shortValueLnet/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 iLre;i()Bintermediary method_10698Lnet/minecraft/class_2514;method_10698()Bnamed byteValueLnet/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 jLre;j()Dintermediary method_10697Lnet/minecraft/class_2514;method_10697()Dnamed doubleValueLnet/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 kLre;k()Fintermediary method_10700Lnet/minecraft/class_2514;method_10700()Fnamed floatValueLnet/minecraft/nbt/AbstractNbtNumber;floatValue()F
 - 
numberValue
Gets the value as a generic number.- Returns:
 - the value as a 
Number - Mappings:
 Namespace Name Mixin selector official lLre;l()Ljava/lang/Number;intermediary method_10702Lnet/minecraft/class_2514;method_10702()Ljava/lang/Number;named numberValueLnet/minecraft/nbt/AbstractNbtNumber;numberValue()Ljava/lang/Number;
 - 
toString
- Specified by:
 toStringin interfaceNbtElement- Overrides:
 toStringin classObject
 
 -