com.websudos.phantom.builder.ops

ModifyColumnOptional

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  17. def setIfDefined(value: Option[RR]): Condition

    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.

  18. def setTo(value: PrepareMark): clauses.PreparedWhereClause.ParametricCondition[Option[RR]]

    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
  19. def setTo(value: Option[RR]): Condition

    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
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AbstractModifyColumn[Option[RR]]

Inherited from AnyRef

Inherited from Any

Ungrouped