DRI

data class DRI(    val packageName: String? = null,     val classNames: String? = null,     val callable: Callable? = null,     val target: DriTarget = PointingToDeclaration,     val extra: String? = null)

DRI stands for DokkaResourceIdentifier

Constructors

Link copied to clipboard
fun DRI(    packageName: String? = null,     classNames: String? = null,     callable: Callable? = null,     target: DriTarget = PointingToDeclaration,     extra: String? = null)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val callable: Callable? = null
Link copied to clipboard
val classNames: String? = null
Link copied to clipboard
val extra: String? = null
Link copied to clipboard
val packageName: String? = null
Link copied to clipboard
val target: DriTarget

Extensions

Link copied to clipboard
fun DRI.isJvmField(): Boolean
Link copied to clipboard
fun DRI.isJvmName(): Boolean
Link copied to clipboard
val DRI.parent: DRI
Link copied to clipboard
val DRI.sureClassNames: String
Link copied to clipboard
fun DRI.withClass(name: String): DRI
Link copied to clipboard
fun DRI.withEnumEntryExtra(): DRI
Link copied to clipboard
fun DRI.withTargetToDeclaration(): DRI