Class DaggerAdapter.Builder

  • Enclosing class:
    DaggerAdapter

    public static class DaggerAdapter.Builder
    extends java.lang.Object
    Builder for setting configuration options on DaggerAdapter.
    • Constructor Summary

      Constructors 
      Constructor Description
      Builder()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      DaggerAdapter.Builder addModules​(java.lang.Iterable<java.lang.Object> daggerModuleObjects)
      Adds modules (which can be classes annotated with Module, or instances of those classes) which will be scanned for bindings.
      Module build()
      Returns a module that will configure bindings based on the modules & scanners.
      DaggerAdapter.Builder filter​(com.google.common.base.Predicate<java.lang.reflect.Method> predicate)
      Limit the adapter to a subset of methods from {@link @dagger.Module} annotated classes which satisfy the predicate.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • build

        public Module build()
        Returns a module that will configure bindings based on the modules & scanners.
      • addModules

        public DaggerAdapter.Builder addModules​(java.lang.Iterable<java.lang.Object> daggerModuleObjects)
        Adds modules (which can be classes annotated with Module, or instances of those classes) which will be scanned for bindings.
      • filter

        public DaggerAdapter.Builder filter​(com.google.common.base.Predicate<java.lang.reflect.Method> predicate)
        Limit the adapter to a subset of methods from {@link @dagger.Module} annotated classes which satisfy the predicate. Defaults to allowing all.