commonMain.com.shakelang.util.jvmlib.infos.constants.ConstantNullPointer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jvmlib-jvm Show documentation
Show all versions of jvmlib-jvm Show documentation
A library for jvm stuff in java
The newest version!
package com.shakelang.util.jvmlib.infos.constants
import com.shakelang.util.io.streaming.output.DataOutputStream
class ConstantNullPointer private constructor() : ConstantInfo() {
override val tag: Byte get() = 0x00
override val tagName: String get() = "null"
override fun dump(out: DataOutputStream) {}
override val index: UShort get() = 0u
companion object {
val INSTANCE = ConstantNullPointer()
}
}