scalatags

DataConverters

trait DataConverters extends AnyRef

Trait containing the contents of the DataConverters module, so it can be mixed in to other objects as needed.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DataConverters
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class CssNumber extends AnyRef

    Extends numbers to provide a bunch of useful methods, allowing you to write CSS-lengths in a nice syntax without resorting to strings.

  2. implicit class HexColorHelper extends AnyRef

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. implicit def Byte2CssNumber(x: Byte): CssNumber

  7. implicit def Double2CssNumber(x: Double): CssNumber

  8. implicit def Float2CssNumber(x: Float): CssNumber

  9. implicit def Int2CssNumber(x: Int): CssNumber

  10. implicit def Long2CssNumber(x: Long): CssNumber

  11. implicit def Short2CssNumber(x: Short): CssNumber

  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def element(s: String): Element

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  20. def hsl(h: Int, s: Int, l: Int): Hsl

    A color represented as Hue (0-360), Saturation (0-100) and Lightness (0-100)

  21. def hsla(h: Int, s: Int, l: Int, a: Double): Hsla

    A color represented as Hue (0-360), Saturation (0-100) and Lightness (0-100) as well as an alpha (opacity) from 0.

    A color represented as Hue (0-360), Saturation (0-100) and Lightness (0-100) as well as an alpha (opacity) from 0.0 to 1.0

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def linearGradient(direction: String, colors: ColorStop*): LinearGradient

  24. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  27. def radialGradient(colors: ColorStop*): RadialGradient

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient.

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient. The result of this function is an object of the CSS Gradient data type.

    MDN

  28. def radialGradient(style: String, colors: ColorStop*): RadialGradient

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient.

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient. The result of this function is an object of the CSS Gradient data type.

    MDN

  29. def radialGradient(x: Length, y: Length, style: String, colors: ColorStop*): RadialGradient

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient.

    The CSS radial-gradient() function creates an Image which represents a gradient of colors radiating from an origin, the center of the gradient. The result of this function is an object of the CSS Gradient data type.

    MDN

  30. def rgb(r: Int, g: Int, b: Int): Rgb

    A color represented as its 3 primary components, from 0 to 255

  31. def rgba(r: Int, g: Int, b: Int, a: Double): Rgba

    A color represented as its 3 primary components, from 0 to 255, as well as an alpha (opacity) from 0.

    A color represented as its 3 primary components, from 0 to 255, as well as an alpha (opacity) from 0.0 to 1.0

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

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. def url(s: String): Url

    An image found at a particular URL

  35. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped