Packages

c

sbt.internal

DetectedModules

final class DetectedModules[T] extends AnyRef

Auto-detected top-level modules (as in object X) of type T paired with their source names.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DetectedModules
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DetectedModules(modules: Seq[(String, T)])

Value Members

  1. val modules: Seq[(String, T)]
  2. def names: Seq[String]

    The source names of the modules.

    The source names of the modules. This is "X" in object X, as opposed to the implementation class name "X$". The names are returned in a stable order such that names zip values pairs a name with the actual module.

  3. def values: Seq[T]

    The singleton value of the module.

    The singleton value of the module. The values are returned in a stable order such that names zip values pairs a name with the actual module.