object ModuleSplitStyle

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

Type Members

  1. final case class SmallModulesFor(packages: List[String]) extends ModuleSplitStyle with Product with Serializable

    Mix between FewestModules / SmallestModules

    Mix between FewestModules / SmallestModules

    * Make modules as small as possible for all classes in any of packages (or subpackages thereof). * Make as few modules as possible for everything else (while not including unnecessary code).

    Note

    In order to avoid ambiguity between packages and classes (and keep a simple interface), selecting individual classes is not supported.

Value Members

  1. case object FewestModules extends ModuleSplitStyle with Product with Serializable

    Make as few modules as possible (while not including unnecessary code).

    Make as few modules as possible (while not including unnecessary code).

    This is the default and the only style that works with ModuleKind.NoModule.

  2. case object SmallestModules extends ModuleSplitStyle with Product with Serializable

    Make modules as small as possible.