接口 LibraryScope


public interface LibraryScope
The scope of a library. The common COMPILE, RUNTIME and PROVIDED scopes are defined here and supported by the common Layouts. A custom Layout can handle additional scopes as required.
从以下版本开始:
1.0.0
作者:
Phillip Webb
  • 字段概要

    字段
    修饰符和类型
    字段
    说明
    static final LibraryScope
    The library is used at compile time and runtime.
    static final LibraryScope
    Marker for custom scope when custom configuration is used.
    static final LibraryScope
    The library is needed for compile but is usually provided when running.
    static final LibraryScope
    The library is used at runtime but not needed for compile.
  • 方法概要

    修饰符和类型
    方法
    说明
     
  • 字段详细资料

    • COMPILE

      static final LibraryScope COMPILE
      The library is used at compile time and runtime.
    • RUNTIME

      static final LibraryScope RUNTIME
      The library is used at runtime but not needed for compile.
    • PROVIDED

      static final LibraryScope PROVIDED
      The library is needed for compile but is usually provided when running.
    • CUSTOM

      static final LibraryScope CUSTOM
      Marker for custom scope when custom configuration is used.
  • 方法详细资料