Class

com.outworkers.phantom.builder.ops

ModifyColumnOptional

Related Doc: package ops

Permalink

sealed class ModifyColumnOptional[RR] extends AbstractModifyColumn[Option[RR]]

Linear Supertypes
AbstractModifyColumn[Option[RR]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ModifyColumnOptional
  2. AbstractModifyColumn
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ModifyColumnOptional(col: OptionalColumn[_, _, RR])

    Permalink

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. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. def setIfDefined(value: Option[RR]): Default

    Permalink

    Default setTo clause for all update queries except for map columns.

    Default setTo clause for all update queries except for map columns. This differs from the standard setTo in that it will only create a set clause if the option provided as an argument is not empty.

    value

    The typed value to set the column to.

    returns

    A serialized update clause condition that is latter appended to the Set Query part of an update query.

  16. def setTo(value: PrepareMark): Prepared[Option[RR]]

    Permalink

    Set to method used to support prepared modify queries.

    Set to method used to support prepared modify queries. It will only accept prepared mark arguments, where phantom provides only one global instance called "?" to match the CQL syntax expected by the end user. Example:

    database.table.column.update.p_modify(_.bla setTo ?).where(_.a eqs ?)
    value

    The prepare mark value to set this to. This is just provided for consnistency with natural CQL.

    returns

    The prepared setTo clause part that gets appended to the Set Part of the update query.

    Definition Classes
    AbstractModifyColumn
  17. def setTo(value: Option[RR]): Default

    Permalink

    Default setTo clause for all update queries except for map columns.

    Default setTo clause for all update queries except for map columns. All setTo operations from the DSL will be serialized through a modify column through an implicit conversion at the DSL level.

    Map columns have a different implicits that take precedence over ModifyColumn to allow for better support of map updates.

    value

    The typed value to set the column to.

    returns

    A serialized update clause condition that is latter appended to the Set Query part of an update query.

    Definition Classes
    AbstractModifyColumn
  18. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AbstractModifyColumn[Option[RR]]

Inherited from AnyRef

Inherited from Any

Ungrouped