com.twitter.inject

TwitterPrivateModule

abstract class TwitterPrivateModule extends PrivateModule with TwitterBaseModule with ScalaPrivateModule

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TwitterPrivateModule
  2. ScalaPrivateModule
  3. TwitterBaseModule
  4. TwitterModuleLifecycle
  5. TwitterModuleFlags
  6. PrivateModule
  7. Module
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TwitterPrivateModule()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def addError(arg0: Message): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  7. final def addError(arg0: Throwable): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  8. final def addError(arg0: String, arg1: <repeated...>[AnyRef]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def bind[T](implicit arg0: Manifest[T]): ScalaAnnotatedBindingBuilder[T] { ... /* 2 definitions in type refinement */ }

    Definition Classes
    ScalaPrivateModule
  11. final def bind[T](arg0: Class[T]): AnnotatedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  12. final def bind[T](arg0: TypeLiteral[T]): AnnotatedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  13. final def bind[T](arg0: Key[T]): LinkedBindingBuilder[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  14. final def bindConstant(): AnnotatedConstantBindingBuilder

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  15. final def bindInterceptor(arg0: Matcher[_ >: Class[_]], arg1: Matcher[_ >: Method], arg2: <repeated...>[MethodInterceptor]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  16. def bindListener(arg0: Matcher[_ >: TypeLiteral[_]], arg1: TypeListener): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  17. final def bindScope(arg0: Class[_ <: Annotation], arg1: Scope): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  18. final def binder(): PrivateBinder

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  19. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. def configure(): Unit

    Attributes
    protected
    Definition Classes
    TwitterPrivateModule → PrivateModule
  21. final def configure(arg0: Binder): Unit

    Definition Classes
    PrivateModule → Module
  22. final def convertToTypes(arg0: Matcher[_ >: TypeLiteral[_]], arg1: TypeConverter): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  23. def createKey[T](implicit arg0: Manifest[T]): Key[T]

    Attributes
    protected
    Definition Classes
    TwitterBaseModule
  24. final def currentStage(): Stage

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  25. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  27. def expose[T](implicit arg0: Manifest[T]): ScalaAnnotatedElementBuilder[T] { ... /* 2 definitions in type refinement */ }

    Definition Classes
    ScalaPrivateModule
  28. final def expose(arg0: TypeLiteral[_]): AnnotatedElementBuilder

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  29. final def expose(arg0: Class[_]): AnnotatedElementBuilder

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  30. final def expose[T](arg0: Key[T]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  31. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. def flag[T](name: String, help: String)(implicit arg0: Flaggable[T], arg1: Manifest[T]): Flag[T]

    Attributes
    protected
    Definition Classes
    TwitterModuleFlags
  33. def flag[T](name: String, default: T, help: String)(implicit arg0: Flaggable[T]): Flag[T]

    Create a flag and add it to the modules flags list

    Create a flag and add it to the modules flags list

    Attributes
    protected
    Definition Classes
    TwitterModuleFlags
  34. val flags: ArrayBuffer[Flag[_]]

    Attributes
    protected[com.twitter.inject]
    Definition Classes
    TwitterModuleFlags
  35. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  36. def getMembersInjector[T](arg0: TypeLiteral[T]): MembersInjector[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  37. def getMembersInjector[T](arg0: Class[T]): MembersInjector[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  38. def getProvider[T](implicit arg0: Manifest[T]): Provider[T]

  39. final def getProvider[T](arg0: Class[T]): Provider[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  40. final def getProvider[T](arg0: Key[T]): Provider[T]

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  41. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  42. final def install(arg0: Module): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  43. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  44. def modules: Seq[Module]

    Additional modules to be composed into this module

    Additional modules to be composed into this module

    NOTE: This Seq of modules is generally used instead of the standard Guice 'install' method so that TwitterModules with flag definitions can be supported. However, AbstractModule.install can still be used for non-TwitterModules, and is sometimes preferred due to install being deferred until after flag parsing occurs.

    Attributes
    protected[com.twitter.inject]
    Definition Classes
    TwitterBaseModule
  45. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  46. final def notify(): Unit

    Definition Classes
    AnyRef
  47. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  48. final def requestInjection(arg0: Any): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  49. final def requestStaticInjection(arg0: <repeated...>[Class[_]]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  50. final def requireBinding(arg0: Class[_]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  51. final def requireBinding(arg0: Key[_]): Unit

    Attributes
    protected[com.google.inject]
    Definition Classes
    PrivateModule
  52. def singletonShutdown(injector: Injector): Unit

    Invoke as JVM shuts down.

    Invoke as JVM shuts down. NOTE: This method should only get singleton instances from the injector.

    Attributes
    protected[com.twitter.inject]
    Definition Classes
    TwitterModuleLifecycle
  53. def singletonStartup(injector: Injector): Unit

    Invoke after Guice injector is started NOTE: This method should only get singleton instances from the injector.

    Invoke after Guice injector is started NOTE: This method should only get singleton instances from the injector.

    Attributes
    protected[com.twitter.inject]
    Definition Classes
    TwitterModuleLifecycle
  54. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  55. def toString(): String

    Definition Classes
    AnyRef → Any
  56. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ScalaPrivateModule

Inherited from TwitterBaseModule

Inherited from TwitterModuleLifecycle

Inherited from TwitterModuleFlags

Inherited from PrivateModule

Inherited from Module

Inherited from AnyRef

Inherited from Any

Ungrouped