KoKDocTagProvider

An interface representing a Kotlin declaration that provides access to KDoc tags.

Inheritors

Properties

Link copied to clipboard
abstract val numTags: Int

The number of tags.

Link copied to clipboard

List of tags.

Functions

Link copied to clipboard
abstract fun hasAllTags(tags: Collection<KoKDocTag>): Boolean
abstract fun hasAllTags(tag: KoKDocTag, vararg tags: KoKDocTag): Boolean

Determines whether the declaration has all specified tags.

Link copied to clipboard
abstract fun hasTag(tags: Collection<KoKDocTag>): Boolean
abstract fun hasTag(tag: KoKDocTag, vararg tags: KoKDocTag): Boolean

Determines whether the declaration has at least one specified tag.

Link copied to clipboard
abstract fun hasTags(): Boolean

Determines whatever the declaration has tags.