Class

spinoco.fs2.cassandra.builder

DeleteBuilder

Related Doc: package builder

Permalink

case class DeleteBuilder[R <: HList, PK <: HList, CK <: HList, Q <: HList, RIF <: HList](table: Table[R, PK, CK, _ <: HList], ifConditions: Seq[(String, String, Comparison.Value)], columns: Seq[String], timestamp: Option[String], ifExistsCondition: Boolean) extends Product with Serializable

Source
DeleteBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeleteBuilder
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeleteBuilder(table: Table[R, PK, CK, _ <: HList], ifConditions: Seq[(String, String, Comparison.Value)], columns: Seq[String], timestamp: Option[String], ifExistsCondition: Boolean)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to any2stringadd[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DeleteBuilder[R, PK, CK, Q, RIF], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to ArrowAssoc[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def build(implicit CTQ: CTypeNonEmptyRecordInstance[Q], CTR: CTypeRecordInstance[RIF]): Delete[Q, RIF]

    Permalink

    create the DELETE statement *

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def cluster[K, V](name: Aux[K])(implicit ev: Aux[CK, K, V], P: Prepend[Q, ::[FieldType[K, V], HNil]]): DeleteBuilder[R, PK, CK, Out, RIF]

    Permalink

    adds supplied column to where query *

  10. def column[K, V <: Option[_]](name: Aux[K])(implicit ev: Aux[R, K, V]): DeleteBuilder[R, PK, CK, Q, RIF]

    Permalink

    deletes given column from the table.

    deletes given column from the table. Note that column value must be optional *

  11. val columns: Seq[String]

    Permalink
  12. def ensuring(cond: (DeleteBuilder[R, PK, CK, Q, RIF]) ⇒ Boolean, msg: ⇒ Any): DeleteBuilder[R, PK, CK, Q, RIF]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to Ensuring[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (DeleteBuilder[R, PK, CK, Q, RIF]) ⇒ Boolean): DeleteBuilder[R, PK, CK, Q, RIF]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to Ensuring[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): DeleteBuilder[R, PK, CK, Q, RIF]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to Ensuring[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): DeleteBuilder[R, PK, CK, Q, RIF]

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to Ensuring[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to StringFormat[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. val ifConditions: Seq[(String, String, Comparison.Value)]

    Permalink
  21. val ifExistsCondition: Boolean

    Permalink
  22. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  26. def onlyIf[K, V, K0](name: Aux[K], as: Aux[K0], op: Comparison.Value)(implicit ev: Aux[R, K, V]): DeleteBuilder[R, PK, CK, ::[FieldType[K0, V], Q], ::[FieldType[K, Option[V]], RIF]]

    Permalink

    Like onlyIf, but allows to specify alias apart form the name of the column.

    Like onlyIf, but allows to specify alias apart form the name of the column. Result contains field with that configured alias.

  27. def onlyIf[K, V](name: Aux[K], op: Comparison.Value)(implicit ev: Aux[R, K, V]): DeleteBuilder[R, PK, CK, ::[FieldType[K, V], Q], ::[FieldType[K, Option[V]], RIF]]

    Permalink

    Causes to specify IF condition to guard the delete operation.

    Causes to specify IF condition to guard the delete operation. Returns optional field-type, that is set to None in case the operation was successful or Some(current_value) in case the condition failed.

  28. def onlyIfExists: DeleteBuilder[R, PK, CK, Q, ::[IfExistsField, RIF]]

    Permalink

    Deletes column(s), but only if given columns exists

  29. def primary(implicit P: Prepend[PK, CK]): DeleteBuilder[R, PK, CK, Out, RIF]

    Permalink

    deletes from the cluster column specified by primary key *

  30. def row: DeleteBuilder[R, PK, CK, Q, HNil]

    Permalink

    deletes all columns in the specified row by PK *

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. val table: Table[R, PK, CK, _ <: HList]

    Permalink
  33. val timestamp: Option[String]

    Permalink
  34. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withTimeStamp[K](name: Aux[K]): DeleteBuilder[R, PK, CK, ::[FieldType[K, Long], Q], RIF]

    Permalink

    deltes only if deleted colum(s) have specified timestamp set *

  38. def [B](y: B): (DeleteBuilder[R, PK, CK, Q, RIF], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from DeleteBuilder[R, PK, CK, Q, RIF] to ArrowAssoc[DeleteBuilder[R, PK, CK, Q, RIF]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DeleteBuilder[R, PK, CK, Q, RIF] to any2stringadd[DeleteBuilder[R, PK, CK, Q, RIF]]

Inherited by implicit conversion StringFormat from DeleteBuilder[R, PK, CK, Q, RIF] to StringFormat[DeleteBuilder[R, PK, CK, Q, RIF]]

Inherited by implicit conversion Ensuring from DeleteBuilder[R, PK, CK, Q, RIF] to Ensuring[DeleteBuilder[R, PK, CK, Q, RIF]]

Inherited by implicit conversion ArrowAssoc from DeleteBuilder[R, PK, CK, Q, RIF] to ArrowAssoc[DeleteBuilder[R, PK, CK, Q, RIF]]

Ungrouped