nxcloud.foundation.core.lang.ObjectPuppet.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nxcloud-core-base Show documentation
Show all versions of nxcloud-core-base Show documentation
Base libraries for NXCloud Framework
package nxcloud.foundation.core.lang
open class ObjectPuppet(val value: T?) {
companion object {
fun of(value: T?): ObjectPuppet {
return ObjectPuppet(value)
}
}
}
data object NullPuppet : ObjectPuppet(null)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy