Packages

class BigQueryType[T] extends AnyRef

Type class for case class T annotated for BigQuery IO.

This decouples generated fields and methods from macro expansion to keep core macro free.

Source
BigQueryType.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigQueryType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BigQueryType()(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def avroSchema: Schema

    Avro schema of T.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. def fromAvro: (GenericRecord) => T

    Avro GenericRecord to T converter.

  11. def fromTableRow: (google.api.services.bigquery.model.TableRow) => T

    TableRow to T converter.

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isQuery: Boolean

    Whether the case class is annotated for a query.

  16. def isStorage: Boolean

    Whether the case class is annotated for storage API.

  17. def isTable: Boolean

    Whether the case class is annotated for a table.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def queryRaw: Option[String]

    Query from the annotation.

  22. def rowRestriction: Option[String]

    Storage API restriction from the annotation.

  23. def schema: TableSchema

    TableSchema of T.

  24. def selectedFields: Option[List[String]]

    Storage API selectedFields from the annotation.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def table: Option[String]

    Table reference from the annotation.

  27. def tableDescription: Option[String]

    Table description from the annotation.

  28. def toAvro: (T) => GenericRecord

    T to GenericRecord converter.

  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def toTableRow: (T) => google.api.services.bigquery.model.TableRow

    T to TableRow converter.

  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def query: Option[String]

    Query from the annotation.

    Query from the annotation.

    Annotations
    @deprecated
    Deprecated

    (Since version 0.14.0) use queryRaw instead

Inherited from AnyRef

Inherited from Any

Ungrouped