Packages

sealed abstract case class TableColumns[T] extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TableColumns
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. val allColumns: NonEmptyList[String]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. def list: String

    List th fields, separated by commas.

    List th fields, separated by commas. e.g. "field1,field2,field3"

  11. def listF: doobie.Fragment
  12. def listWithParen: String

    List th fields, separated by commas and surrounded by parens.

    List th fields, separated by commas and surrounded by parens. e.g. "(field1,field2,field3)" This makes INSERT queries easier to write like "INSERT INTO mytable VALUES $\{columns.listWithParen}"

  13. def listWithParenF: doobie.Fragment
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def parameterized: String

    Return string of the form '?,?,?' depending on how many fields there is for this TableColumn

  18. def parameterizedF: doobie.Fragment
  19. def parameterizedWithParen: String
  20. def parameterizedWithParenF: doobie.Fragment
  21. def prefixed(prefix: String): String

    Prefix each field with the given string.

    Prefix each field with the given string. e.g. "c.id, c.name, c.address"

  22. def prefixedF(prefix: String): doobie.Fragment
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. val tableName: String
  26. def tableNamePrefixed: String

    Prefix each field with the default table name.

    Prefix each field with the default table name. e.g. "mytable.id, mytable.name, mytable.address"

  27. def tableNamePrefixedF: doobie.Fragment
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped