//nbt-manipulator/br.com.gamemods.nbtmanipulator/NbtDouble
NbtDouble
[jvm]
data class NbtDouble(value: Double) : NbtTag
A tag which wraps a double value.
Constructors
NbtDouble | [jvm] fun NbtDouble(signed: String) Parses the string value as a signed double and wraps it. |
NbtDouble | [jvm] fun NbtDouble(value: Double) |
Functions
Name | Summary |
---|---|
deepCopy | [jvm] open override fun deepCopy(): NbtDouble Returns a new wrapper with the current value. |
toString | [jvm] override fun toString(): String A technical string representation of this tag, containing the tag type, and it’s value, appropriated for developer inspections. |
Properties
Name | Summary |
---|---|
stringValue | [jvm] open override val stringValue: String Returns a string representation of the tag’s value. |
value | [jvm] var value: Double The wrapped value |