JavadocBlockTag

A block tag.

Typically they are found at the end of Javadoc comments.

Examples: @see AnotherClass@since v0.0.1@author Jim O'Java

Constructors

Link copied to clipboard
constructor(type: JavadocBlockTag.Type, content: String)
constructor(tagName: String, content: String)

Types

Link copied to clipboard
enum Type
The type of tag: it could either correspond to a known tag (param, return, etc.) or represent an unknown tag.

Properties

Link copied to clipboard
Link copied to clipboard
open val name: Optional<String>
Link copied to clipboard
open val tagName: String
Link copied to clipboard

Functions

Link copied to clipboard
open fun createParamBlockTag(paramName: String, content: String): JavadocBlockTag
Link copied to clipboard
open fun equals(o: Any): Boolean
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun toString(): String
Link copied to clipboard
open fun toText(): String