OptionalRepr

oxygen.sql.schema.RowRepr.OptionalRepr
final case class OptionalRepr[A](inner: RowRepr[A]) extends RowRepr[Option[A]]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait RowRepr[Option[A]]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def prefixed(prefix: String): RowRepr[Option[A]]

For all columns in this schema, prefix the column name with the given prefix.

For all columns in this schema, prefix the column name with the given prefix.

Attributes

Definition Classes
override def prefixedInline(prefix: String): RowRepr[Option[A]]

For all columns in this schema, prefix the column name with the given prefix. Unless this schema is a product schema, in which case, no prefix will be added.

For all columns in this schema, prefix the column name with the given prefix. Unless this schema is a product schema, in which case, no prefix will be added.

Attributes

Definition Classes

Inherited methods

Attributes

Inherited from:
RowRepr
final def optional: RowRepr[Option[Option[A]]]

Attributes

Inherited from:
RowRepr
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toIndentedString: IndentedString

Attributes

Inherited from:
RowRepr
final override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
RowRepr -> Any
Inherited from:
RowRepr
final def transform[B](ab: Option[A] => B, ba: B => Option[A]): RowRepr[B]

Attributes

Inherited from:
RowRepr
final def transformOrFail[B](ab: Option[A] => Either[String, B], ba: B => Option[A]): RowRepr[B]

Attributes

Inherited from:
RowRepr
final def unsafeChild[B](name: String): RowRepr[B]

Attributes

Inherited from:
RowRepr
final def unsafeRequired[B]: RowRepr[B]

Attributes

Inherited from:
RowRepr

Concrete fields

override val columns: Columns[Option[A]]
override val decoder: ResultDecoder[Option[A]]
override val encoder: InputEncoder[Option[A]]