Object/Trait

net.liftweb.http

UserAgentCalculator

Related Docs: trait UserAgentCalculator | package http

Permalink

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]

    Permalink

    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]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. object chromeCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    Permalink

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

  6. val chromePattern: Regex

    Permalink

    The default regular expression for Chrome

  7. def clone(): AnyRef

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

    Permalink

    The built-in mechanism for calculating Chrome

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

    Permalink

    The built-in mechanism for calculating Firefox

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

    Permalink

    The built-in mechanism for calculating IE

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

    Permalink

    The built-in mechanism for calculating Safari

  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. object firefoxCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    Permalink

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

  16. val firefoxPattern: Regex

    Permalink

    The default regular expression for Firefox

  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. object iPadCalcFunction extends FactoryMaker[Box[(Box[String]) ⇒ Boolean]]

    Permalink

    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

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

    Permalink

    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

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

    Permalink

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

  22. val iePattern: Regex

    Permalink

    The default regular expression for IE

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

    Permalink

    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
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def registerInjection[T](f: () ⇒ T)(implicit man: Manifest[T]): Unit

    Permalink

    Register a function that will inject for the given Manifest

    Register a function that will inject for the given Manifest

    Definition Classes
    SimpleInjector
  29. object safariCalcFunction extends FactoryMaker[(Box[String]) ⇒ Box[Double]]

    Permalink

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

  30. val safariPattern: Regex

    Permalink

    The default regular expression for Safari

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Factory

Inherited from SimpleInjector

Inherited from Injector

Inherited from AnyRef

Inherited from Any

Ungrouped