Packages

class MySQLColumnBuilder extends ColumnBuilder

Source
MySQLProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MySQLColumnBuilder
  2. ColumnBuilder
  3. AnyRef
  4. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MySQLColumnBuilder(tableBuilder: MySQLModelBuilder.TableBuilder, meta: MColumn)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (MySQLColumnBuilder, B)
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toArrowAssoc[MySQLColumnBuilder] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final val StringPattern: Regex

    Regex matcher to extract string out ouf surrounding

    Regex matcher to extract string out ouf surrounding

    Definition Classes
    ColumnBuilder
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def autoInc: Boolean

    Indicates whether this is an auto increment column

    Indicates whether this is an auto increment column

    Definition Classes
    ColumnBuilder
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def createPrimaryKeyColumnOption: Boolean

    Indicates whether a ColumnOption Primary key should be put into the model.

    Indicates whether a ColumnOption Primary key should be put into the model. Only valid for single column primary keys.

    Definition Classes
    ColumnBuilder
  10. def dbType: Option[String]

    A (potentially non-portable) database column type.

    A (potentially non-portable) database column type. For string types, this should not include a length ascription.

    Definition Classes
    ColumnBuilder
  11. def default: Option[Option[Any]]

    The default value for the column.

    The default value for the column. The outer option is used to indicate if a default value is given. The inner Option is used to allow giving None for a nullable column. This method must not return Some(None) for a non-nullable column.

    Default values for autoInc column are automatically ignored (as if returning None).

    If ignoreInvalidDefaults = true, Slick catches scala.MatchError and java.lang.NumberFormatException thrown by this method, logs the message and treats it as no default value for convenience.

    Definition Classes
    MySQLColumnBuilderColumnBuilder
  12. def defaultColumnOption: Option[Default[_]]

    The default value for the column as a ColumnOption Default or None if no default.

    The default value for the column as a ColumnOption Default or None if no default. The value wrapped by ColumnOption Default needs to be an Option in case of a nullable column but can't be an Option in case of a non-nullable Column.

    Default values for autoInc columns are automatically ignored.

    If ignoreInvalidDefaults = true, Slick catches scala.MatchError and java.lang.NumberFormatException thrown by this method, logs the message and treats it as no default value for convenience.

    Definition Classes
    ColumnBuilder
  13. def ensuring(cond: (MySQLColumnBuilder) => Boolean, msg: => Any): MySQLColumnBuilder
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toEnsuring[MySQLColumnBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: (MySQLColumnBuilder) => Boolean): MySQLColumnBuilder
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toEnsuring[MySQLColumnBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean, msg: => Any): MySQLColumnBuilder
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toEnsuring[MySQLColumnBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean): MySQLColumnBuilder
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toEnsuring[MySQLColumnBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def length: Option[Int]

    Column length of string types

    Column length of string types

    Definition Classes
    MySQLColumnBuilderColumnBuilder
  23. def model: Column
    Definition Classes
    ColumnBuilder
  24. def name: String
    Definition Classes
    ColumnBuilder
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. def nullable: Boolean

    Indicates whether this is a nullable column

    Indicates whether this is a nullable column

    Definition Classes
    ColumnBuilder
  29. def rawDefault: Option[String]
    Definition Classes
    ColumnBuilder
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def tpe: String

    Scala type this column is mapped to

    Scala type this column is mapped to

    Definition Classes
    ColumnBuilder
  33. def varying: Boolean

    Indicates whether this should be a varchar in case of a string column.

    Indicates whether this should be a varchar in case of a string column. Should be based on the value of dbType in the future.

    Definition Classes
    ColumnBuilder
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. 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
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toStringFormat[MySQLColumnBuilder] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (MySQLColumnBuilder, B)
    Implicit
    This member is added by an implicit conversion from MySQLColumnBuilder toArrowAssoc[MySQLColumnBuilder] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromMySQLColumnBuilder to StringFormat[MySQLColumnBuilder]

Inherited by implicit conversion Ensuring fromMySQLColumnBuilder to Ensuring[MySQLColumnBuilder]

Inherited by implicit conversion ArrowAssoc fromMySQLColumnBuilder to ArrowAssoc[MySQLColumnBuilder]

Ungrouped