All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.chestmc.nbt.UUIDAdapter.kt Maven / Gradle / Ivy

package net.chestmc.nbt

import net.minecraft.server.NBTTagCompound
import java.util.*

/**
 * A tag adapter for adapting [UUID].
 */
object UUIDAdapter : TagAdapter {
  override fun load(key: String, tag: NBTTagCompound): UUID {
    return UUID.fromString(tag.getString(key))
  }

  override fun save(key: String, value: UUID, tag: NBTTagCompound) {
    tag.setString(key, value.toString())
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy