package common

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. common
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class BigDecimalValueStats(count: Long, min: BigDecimal, max: BigDecimal) extends MetadataStats with Product with Serializable
  2. case class BooleanValueStats(count: Long, trueCount: Long) extends MetadataStats with Product with Serializable
  3. case class CArray[A](value: Array[A], cType: CArrayType[A]) extends CWrappedValue[Array[A]] with Product with Serializable
  4. case class CArrayType[A](elemType: CValueType[A]) extends CValueType[Array[A]] with Product with Serializable
  5. sealed abstract class CBoolean extends CWrappedValue[Boolean]
  6. case class CDate(value: ZonedDateTime) extends CWrappedValue[ZonedDateTime] with Product with Serializable
  7. case class CDouble(value: Double) extends CNumericValue[Double] with Product with Serializable
  8. case class CLong(value: Long) extends CNumericValue[Long] with Product with Serializable
  9. sealed trait CNullType extends CType with CNullValue
  10. sealed trait CNullValue extends CValue
  11. case class CNum(value: BigDecimal) extends CNumericValue[BigDecimal] with Product with Serializable
  12. sealed trait CNumericType[A] extends CValueType[A]
  13. sealed trait CNumericValue[A] extends CWrappedValue[A]
  14. sealed trait CPath extends AnyRef
  15. sealed case class CPathField(name: String) extends CPathNode with Product with Serializable
  16. sealed case class CPathIndex(index: Int) extends CPathNode with Product with Serializable
  17. sealed case class CPathMeta(name: String) extends CPathNode with Product with Serializable
  18. sealed trait CPathNode extends AnyRef
  19. case class CPeriod(value: blueeyes.Period) extends CWrappedValue[blueeyes.Period] with Product with Serializable
  20. case class CString(value: String) extends CWrappedValue[String] with Product with Serializable
  21. sealed trait CType extends Serializable
  22. sealed trait CValue extends RValue
  23. sealed trait CValueType[A] extends CType
  24. sealed trait CWrappedValue[A] extends CValue
  25. trait Codec[A] extends AnyRef

    Codecs allow a writer to deal with the case where we have a buffer overflow when attempting to write all data to the buffer.

    Codecs allow a writer to deal with the case where we have a buffer overflow when attempting to write all data to the buffer. This lets the writer return some state indicating more data needs to be written. This state is then given to a writeMore method so it can finish the writing. It may take several calls to writeMore before it all is finally written.

  26. case class ColumnRef(selector: CPath, ctype: CType) extends Product with Serializable
  27. case class DoubleValueStats(count: Long, min: Double, max: Double) extends MetadataStats with Product with Serializable
  28. type JobId = String
  29. case class LongValueStats(count: Long, min: Long, max: Long) extends MetadataStats with Product with Serializable
  30. sealed trait Metadata extends AnyRef
  31. sealed trait MetadataStats extends Metadata
  32. sealed trait MetadataType extends AnyRef
  33. class Path extends AnyRef
  34. case class RArray(elements: List[RValue]) extends RValue with Product with Serializable
  35. case class RObject(fields: Map[String, RValue]) extends RValue with Product with Serializable
  36. sealed trait RValue extends AnyRef
  37. final class StringExtensions extends AnyRef
  38. case class StringValueStats(count: Long, min: String, max: String) extends MetadataStats with Product with Serializable

Value Members

  1. implicit def stringExtensions(s: String): StringExtensions
  2. object BigDecimalValueStats extends MetadataType with Serializable
  3. object BooleanValueStats extends MetadataType with Serializable
  4. object CArray extends Product with Serializable
  5. object CBoolean extends CValueType[Boolean]
  6. object CDate extends CValueType[ZonedDateTime] with Product with Serializable
  7. object CDouble extends CNumericType[Double] with Product with Serializable
  8. object CEmptyArray extends CNullType with CNullValue with Product with Serializable
  9. object CEmptyObject extends CNullType with CNullValue with Product with Serializable
  10. object CFalse extends CBoolean with Product with Serializable
  11. object CLong extends CNumericType[Long] with Product with Serializable
  12. object CNull extends CNullType with CNullValue with Product with Serializable
  13. object CNum extends CNumericType[BigDecimal] with Product with Serializable
  14. object CPath
  15. object CPathArray extends CPathNode with Product with Serializable
  16. object CPathNode
  17. object CPeriod extends CValueType[blueeyes.Period] with Product with Serializable
  18. object CString extends CValueType[String] with Product with Serializable
  19. object CTrue extends CBoolean with Product with Serializable
  20. object CType extends Serializable
  21. object CUndefined extends CNullType with CNullValue with Product with Serializable
  22. object CValue
  23. object CValueType extends Serializable
  24. object Codec
  25. object ColumnRef extends Serializable
  26. object DoubleValueStats extends MetadataType with Serializable
  27. object JavaSerialization
  28. object LongValueStats extends MetadataType with Serializable
  29. object Metadata
  30. object MetadataType
  31. object Path
  32. object RArray extends Serializable
  33. object RObject extends Serializable
  34. object RValue
  35. object StringValueStats extends MetadataType with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped