NBT-Manipulator

A kotlin/java lib that allows you to read and write NBT data in a clean way

View on GitHub

//nbt-manipulator/br.com.gamemods.nbtmanipulator/NbtString

NbtString

[jvm]
data class NbtString(value: String) : NbtTag

A tag which wraps a String value.

Constructors

   
NbtString [jvm]
fun NbtString(value: String)

Functions

Name Summary
deepCopy [jvm]
open override fun deepCopy(): NbtString
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 which is wrapped by this tag.
value [jvm]
var value: String
The wrapped value