Package com.github.syari.spigot.api.uuid

Types

UUIDEntity
Link copied to clipboard
data class UUIDEntity(uniqueId: UUID) : Comparable<UUIDEntity>
Entity が持つ UUID を操作しやすくしたクラス。変数に保存する際には Entity ではなく UUID で保存することを推奨する。
UUIDPlayer
Link copied to clipboard
data class UUIDPlayer(uniqueId: UUID) : Comparable<UUIDPlayer>
Player が持つ UUID を操作しやすくしたクラス。変数に保存する際には PlayerOfflinePlayer ではなく UUID で保存することを推奨する。

Functions

uuid
Link copied to clipboard
fun uuid(name: String): UUID
UUID.fromString を実行する。
uuidOrNull
Link copied to clipboard
fun uuidOrNull(name: String): UUID?
uuid を実行するが、例外が発生した場合は null を返す。