AttributeKey

sbt.internal.util.AttributeKey
See theAttributeKey companion object
sealed trait AttributeKey[A]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def description: Option[String]

An optional, brief description of the key.

An optional, brief description of the key.

Attributes

def extend: Seq[AttributeKey[_]]

In environments that support delegation, looking up this key when it has no associated value will delegate to the values associated with these keys. The delegation proceeds in order the keys are returned here.

In environments that support delegation, looking up this key when it has no associated value will delegate to the values associated with these keys. The delegation proceeds in order the keys are returned here.

Attributes

def isLocal: Boolean

Specifies whether this key is a local, anonymous key (true) or not (false). This is typically only used for programmatic, intermediate keys that should not be referenced outside of a specific scope.

Specifies whether this key is a local, anonymous key (true) or not (false). This is typically only used for programmatic, intermediate keys that should not be referenced outside of a specific scope.

Attributes

def label: String

The label is the identifier for the key and is camelCase by convention.

The label is the identifier for the key and is camelCase by convention.

Attributes

def rank: Int

Identifies the relative importance of a key among other keys.

Identifies the relative importance of a key among other keys.

Attributes

def tag: KeyTag[A]

The runtime evidence for A.

The runtime evidence for A.

Attributes