Packages

sealed trait InputKey[T] extends Scoped with sbt.Def.KeyedInitialize[InputTask[T]] with ScopingSetting[InputKey[T]] with DefinableSetting[InputTask[T]]

Identifies an input task. An input task parses input and produces a task to run. It consists of three parts: the scope, the name, and the type of the value produced by an input task associated with this key. The scope is represented by a value of type Scope. The name and the type are represented by a value of type AttributeKey[InputTask[T]]. Instances are constructed using the companion object.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InputKey
  2. DefinableSetting
  3. ScopingSetting
  4. KeyedInitialize
  5. Keyed
  6. Initialize
  7. Scoped
  8. Equals
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val key: AttributeKey[InputTask[T]]
    Definition Classes
    InputKeyScoped
  2. abstract def scope: Scope
    Definition Classes
    Scoped

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final macro def :=(v: T): Def.Setting[InputTask[T]]
  4. final macro def <<=(app: Def.Initialize[InputTask[T]]): Def.Setting[InputTask[T]]
    Definition Classes
    DefinableSetting
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def ?: Def.Initialize[Option[InputTask[T]]]

    Creates an Def.Initialize with value scala.None if there was no previous definition of this key, and scala.Some(value) if a definition exists.

    Creates an Def.Initialize with value scala.None if there was no previous definition of this key, and scala.Some(value) if a definition exists. Useful for when you want to use the existence of one setting in order to define another setting.

    returns

    currently bound value wrapped in Initialize[Some[T]], or Initialize[None] if unbound.

    Definition Classes
    DefinableSetting
  7. final def ??[T >: InputTask[T]](or: ⇒ T): Def.Initialize[T]

    Like ?, but with a call-by-name parameter rather than an existing Def.Initialize.

    Like ?, but with a call-by-name parameter rather than an existing Def.Initialize. Useful when you want to have a value computed when no value is bound to this key.

    or

    by-name expression evaluated when a value is needed.

    returns

    currently bound setting value, or the result of or if unbound.

    Definition Classes
    DefinableSetting
  8. final def apply[Z](g: (InputTask[T]) ⇒ Z): Def.Initialize[Z]
    Definition Classes
    KeyedInitialize
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def canEqual(that: Any): Boolean
    Definition Classes
    InputKey → Equals
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. final def dependencies: List[Def.ScopedKey[InputTask[T]]]
    Definition Classes
    KeyedInitialize
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(that: Any): Boolean
    Definition Classes
    Scoped → Equals → AnyRef → Any
  15. final def evaluate(ss: Settings[Scope]): InputTask[T]
    Definition Classes
    KeyedInitialize
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def get(settings: Settings[Scope]): Option[InputTask[T]]

    From the given Settings, extract the value bound to this key.

    From the given Settings, extract the value bound to this key.

    Definition Classes
    DefinableSetting
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    Scoped → AnyRef → Any
  20. def in(scope: Scope): InputKey[T]
    Definition Classes
    InputKeyScopingSetting
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def mapConstant(g: Def.MapConstant): Def.Initialize[InputTask[T]]
    Definition Classes
    KeyedInitialize
  23. final def mapReferenced(g: Def.MapScoped): Def.Initialize[InputTask[T]]
    Definition Classes
    KeyedInitialize
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def or[T >: InputTask[T]](i: Def.Initialize[T]): Def.Initialize[T]

    Creates an Def.Initialize with value bound to this key, or returns i parameter if unbound.

    Creates an Def.Initialize with value bound to this key, or returns i parameter if unbound.

    i

    value to return if this setting doesn't have a value.

    returns

    currently bound setting value, or i if unbound.

    Definition Classes
    DefinableSetting
  28. def scopedKey: Def.ScopedKey[InputTask[T]]
    Definition Classes
    InputKeyDefinableSettingKeyed
  29. final def set(app: Def.Initialize[InputTask[T]], source: SourcePosition): Def.Setting[InputTask[T]]

    Internally used function for setting a value along with the .sbt file location where it is defined.

    Internally used function for setting a value along with the .sbt file location where it is defined.

    Definition Classes
    DefinableSetting
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    InputKey → AnyRef → Any
  32. final def transform(f: (T) ⇒ T, source: SourcePosition): Def.Setting[InputTask[T]]
  33. final val transform: (InputTask[T]) ⇒ InputTask[T]
    Definition Classes
    KeyedInitializeKeyed
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  37. final def withRank(rank: Int): InputKey[T]
  38. def zip[S](o: Def.Initialize[S]): Def.Initialize[(InputTask[T], S)]
    Definition Classes
    Initialize
  39. def zipWith[S, U](o: Def.Initialize[S])(f: (InputTask[T], S) ⇒ U): Def.Initialize[U]
    Definition Classes
    Initialize
  40. final macro def ~=(f: (T) ⇒ T): Def.Setting[InputTask[T]]

Deprecated Value Members

  1. def in(p: ScopeAxis[Reference], c: ScopeAxis[ConfigKey], t: ScopeAxis[AttributeKey[_]]): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  2. def in(p: Reference, c: ConfigKey, t: Scoped): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  3. def in(p: Reference, t: Scoped): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  4. def in(p: Reference, c: ConfigKey): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  5. def in(c: ConfigKey, t: Scoped): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  6. def in(c: ConfigKey): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  7. def in(t: Scoped): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

  8. def in(p: Reference): InputKey[T]
    Definition Classes
    ScopingSetting
    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0)

Inherited from DefinableSetting[InputTask[T]]

Inherited from ScopingSetting[InputKey[T]]

Inherited from Def.KeyedInitialize[InputTask[T]]

Inherited from Def.Keyed[InputTask[T], InputTask[T]]

Inherited from Def.Initialize[InputTask[T]]

Inherited from Scoped

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped