com.datastax.spark.connector.types

CassandraOption

sealed trait CassandraOption[+A] extends Product with Serializable

An Optional value with Cassandra in mind. There are three options Value(value): Representing a value to be inserted from C* Unset: Representing a value which should be skipped when writing to C* Null: Representing a java null, treated as a delete in C* (or empty collection)

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CassandraOption
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by toScalaOption
  2. by any2stringadd
  3. by any2stringfmt
  4. by any2ArrowAssoc
  5. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Definition Classes
    Equals
  2. abstract def productArity: Int

    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any

    Definition Classes
    Product

Concrete 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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (CassandraOption[A], B)

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to ArrowAssoc[CassandraOption[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def collect[B](pf: PartialFunction[A, B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  11. def ensuring(cond: (CassandraOption[A]) ⇒ Boolean, msg: ⇒ Any): CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Ensuring[CassandraOption[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (CassandraOption[A]) ⇒ Boolean): CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Ensuring[CassandraOption[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Ensuring[CassandraOption[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Ensuring[CassandraOption[A]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  17. final def exists(p: (A) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  18. final def filter(p: (A) ⇒ Boolean): Option[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  19. final def filterNot(p: (A) ⇒ Boolean): Option[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def flatMap[B](f: (A) ⇒ Option[B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  22. def flatten[B](implicit ev: <:<[A, Option[B]]): Option[B]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  23. final def fold[B](ifEmpty: ⇒ B)(f: (A) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  24. final def forall(p: (A) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  25. final def foreach[U](f: (A) ⇒ U): Unit

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  26. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. def get: A

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  28. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  29. final def getOrElse[B >: A](default: ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. def isDefined: Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  32. def isEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  33. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  34. def iterator: Iterator[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  35. final def map[B](f: (A) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  36. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  37. final def nonEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  38. final def notify(): Unit

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

    Definition Classes
    AnyRef
  40. final def orElse[B >: A](alternative: ⇒ Option[B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  41. final def orNull[A1 >: A](implicit ev: <:<[Null, A1]): A1

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  42. def productIterator: Iterator[Any]

    Definition Classes
    Product
  43. def productPrefix: String

    Definition Classes
    Product
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. final def toLeft[X](right: ⇒ X): Product with Serializable with Either[A, X]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  46. def toList: List[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
  47. final def toRight[X](left: ⇒ X): Product with Serializable with Either[X, A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  48. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def withFilter(p: (A) ⇒ Boolean): WithFilter

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Definition Classes
    Option
    Annotations
    @inline()
  53. def [B](y: B): (CassandraOption[A], B)

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to ArrowAssoc[CassandraOption[A]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def canEqual(that: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cassandraOption: Option[A]).canEqual(that)
    Definition Classes
    Equals
  2. def productArity: Int

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cassandraOption: Option[A]).productArity
    Definition Classes
    Product
  3. def productElement(n: Int): Any

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cassandraOption: Option[A]).productElement(n)
    Definition Classes
    Product
  4. def productIterator: Iterator[Any]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cassandraOption: Option[A]).productIterator
    Definition Classes
    Product
  5. def productPrefix: String

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Option[A] performed by method toScalaOption in com.datastax.spark.connector.types.CassandraOption.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cassandraOption: Option[A]).productPrefix
    Definition Classes
    Product
  6. val self: Any

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cassandraOption: StringAdd).self
    Definition Classes
    StringAdd
  7. val self: Any

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cassandraOption: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to ArrowAssoc[CassandraOption[A]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cassandraOption: ArrowAssoc[CassandraOption[A]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: CassandraOption[A]

    Implicit information
    This member is added by an implicit conversion from CassandraOption[A] to Ensuring[CassandraOption[A]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (cassandraOption: Ensuring[CassandraOption[A]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion toScalaOption from CassandraOption[A] to Option[A]

Inherited by implicit conversion any2stringadd from CassandraOption[A] to StringAdd

Inherited by implicit conversion any2stringfmt from CassandraOption[A] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from CassandraOption[A] to ArrowAssoc[CassandraOption[A]]

Inherited by implicit conversion any2Ensuring from CassandraOption[A] to Ensuring[CassandraOption[A]]

Ungrouped