UUIDEntity

data class UUIDEntity(uniqueId: UUID) : Comparable<UUIDEntity>

Entity が持つ UUID を操作しやすくしたクラス。

変数に保存する際には Entity ではなく UUID で保存することを推奨する。

Since

1.1.0

Parameters

uniqueId

Constructors

UUIDEntity
Link copied to clipboard
fun UUIDEntity(uniqueId: UUID)

Types

Companion
Link copied to clipboard
object Companion

Functions

compareTo
Link copied to clipboard
open operator override fun compareTo(other: UUIDEntity): Int
UUIDEntity.uniqueId を比較する。
toString
Link copied to clipboard
open override fun toString(): String
UUIDEntity.uniqueId を文字列として取得する。

Properties

entity
Link copied to clipboard
val entity: Entity?
Entity として取得する。
uniqueId
Link copied to clipboard
val uniqueId: UUID