Packages

object UserAgentCalculator extends Factory

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UserAgentCalculator
  2. Factory
  3. SimpleInjector
  4. Injector
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class FactoryMaker [T] extends StackableMaker[T] with Vendor[T]

    Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

    Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

    Definition Classes
    Factory
  2. abstract class Inject [T] extends StackableMaker[T] with Vendor[T]

    Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

    Create an object or val that is a subclass of the FactoryMaker to generate factory for a particular class as well as define session and request specific vendors and use doWith to define the vendor just for the scope of the call.

    Definition Classes
    SimpleInjector

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val chromePattern: Regex

    The default regular expression for Chrome

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def defaultChromeCalcFunction(userAgent: Box[String]): Box[Double]

    The built-in mechanism for calculating Chrome

  8. def defaultFirefoxCalcFunction(userAgent: Box[String]): Box[Double]

    The built-in mechanism for calculating Firefox

  9. def defaultIeCalcFunction(userAgent: Box[String]): Box[Double]

    The built-in mechanism for calculating IE

  10. def defaultSafariCalcFunction(userAgent: Box[String]): Box[Double]

    The built-in mechanism for calculating Safari

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. val firefoxPattern: Regex

    The default regular expression for Firefox

  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  17. val iePattern: Regex

    The default regular expression for IE

  18. implicit def inject[T](implicit man: Manifest[T]): Box[T]

    Perform the injection for the given type.

    Perform the injection for the given type. You can call: inject[Date] or inject[List[Map[String, PaymentThing]]]. The appropriate Manifest will be

    Definition Classes
    SimpleInjectorInjector
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  23. def registerInjection[T](f: () ⇒ T)(implicit man: Manifest[T]): Unit

    Register a function that will inject for the given Manifest

    Register a function that will inject for the given Manifest

    Definition Classes
    SimpleInjector
  24. val safariPattern: Regex

    The default regular expression for Safari

  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. object chromeCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    You can change the mechanism by which the user agent for Chrome is calculated by doing the Factory thing with this object

  31. object firefoxCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    You can change the mechanism by which the user agent for Firefox is calculated by doing the Factory thing with this object

  32. object iPadCalcFunction extends FactoryMaker[Box[(Box[String]) ⇒ Boolean]]

    You can change the mechanism by which Lift calculates if the User-Agent represents an iPad.

    You can change the mechanism by which Lift calculates if the User-Agent represents an iPad. Put your special calculation function in here

  33. object iPhoneCalcFunction extends FactoryMaker[Box[(Box[String]) ⇒ Boolean]]

    You can change the mechanism by which Lift calculates if the User-Agent represents an iPhone.

    You can change the mechanism by which Lift calculates if the User-Agent represents an iPhone. Put your special calculation function in here

  34. object ieCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    You can change the mechanism by which the user agent for IE is calculated by doing the Factory thing with this object

  35. object safariCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    You can change the mechanism by which the user agent for Safari is calculated by doing the Factory thing with this object

Inherited from Factory

Inherited from SimpleInjector

Inherited from Injector

Inherited from AnyRef

Inherited from Any

Ungrouped