Packages

trait SqlFragment[T] extends Monoid[T]

Typeclass for SQL fragments.

Source
SqlModule.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SqlFragment
  2. Monoid
  3. Semigroup
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def and(fs: T*): T

    Returns (f1) AND (f2) AND ... (fn) for all fragments.

  2. abstract def andOpt(fs: Option[T]*): T

    Returns (f1) AND (f2) AND ... (fn) for all defined fragments.

  3. abstract def bind[A](encoder: Encoder, value: A): T
  4. abstract def combine(x: T, y: T): T
    Definition Classes
    Semigroup
  5. abstract def const(s: String): T
  6. abstract def empty: T
    Definition Classes
    Monoid
  7. abstract def in[G[_], A](f: T, fs: G[A], enc: Encoder)(implicit arg0: Reducible[G]): T
  8. abstract def needsCollation(codec: Codec): Boolean
  9. abstract def orOpt(fs: Option[T]*): T

    Returns (f1) OR (f2) OR ... (fn) for all defined fragments.

  10. abstract def parentheses(f: T): T
  11. abstract def sqlTypeName(codec: Codec): Option[String]
  12. abstract def whereAnd(fs: T*): T

    Returns WHERE (f1) AND (f2) AND ... (fn) or the empty fragment if fs is empty.

  13. abstract def whereAndOpt(fs: Option[T]*): T

    Returns WHERE (f1) AND (f2) AND ... (fn) for defined f, if any, otherwise the empty fragment.

Concrete 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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def combineAll(as: IterableOnce[T]): T
    Definition Classes
    Monoid
  7. def combineAllOption(as: IterableOnce[T]): Option[T]
    Definition Classes
    Monoid → Semigroup
  8. def combineN(a: T, n: Int): T
    Definition Classes
    Monoid → Semigroup
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def intercalate(middle: T): Semigroup[T]
    Definition Classes
    Semigroup
  15. def isEmpty(a: T)(implicit ev: Eq[T]): Boolean
    Definition Classes
    Monoid
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def repeatedCombineN(a: T, n: Int): T
    Attributes
    protected[this]
    Definition Classes
    Semigroup
  21. def reverse: Monoid[T]
    Definition Classes
    Monoid → Semigroup
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Monoid[T]

Inherited from Semigroup[T]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped