Builder

abstract class Builder<out B : Taggable.Builder<B>>

The builder analogue to Taggable types.

Constructors

Builder
Link copied to clipboard
fun Builder()

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
tag
Link copied to clipboard
fun <T : Any> tag(type: Class<T>, tag: T?): B
Attaches tag to the request using type as a key.
fun <T : Any> tag(type: KClass<T>, tag: T?): B
Attaches tag to the request using type as a key.
toString
Link copied to clipboard
open fun toString(): String

Properties

tags
Link copied to clipboard
val tags: MutableMap<KClass<*>, Any>
Mutable map of the current tags this builder contains.

Inheritors

AttributeSpec
Link copied to clipboard
EnumerationCaseSpec
Link copied to clipboard
ExtensionSpec
Link copied to clipboard
FileMemberSpec
Link copied to clipboard
FileSpec
Link copied to clipboard
FunctionSpec
Link copied to clipboard
ImportSpec
Link copied to clipboard
ParameterSpec
Link copied to clipboard
PropertySpec
Link copied to clipboard
TypeAliasSpec
Link copied to clipboard
TypeSpec
Link copied to clipboard