Packages

object DataType extends LogSupport

Linear Supertypes
LogSupport, LazyLogger, LoggingMethods, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataType
  2. LogSupport
  3. LazyLogger
  4. LoggingMethods
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ArrayType(elemType: DataType) extends DataType with Product with Serializable
  2. case class CharType(length: Option[DataType]) extends DataType with Product with Serializable
  3. case class DecimalType(precision: TypeParameter, scale: TypeParameter) extends DataType with Product with Serializable
  4. case class EmbeddedRecordType(elems: Seq[DataType]) extends DataType with Product with Serializable

    For describing the type of 'select *'

  5. abstract class FractionType extends NumericType
  6. case class GenericType(typeName: String, typeParams: Seq[DataType] = Seq.empty) extends DataType with Product with Serializable
  7. case class IntConstant(value: Int) extends TypeParameter with Product with Serializable

    Constant type used for arguments of varchar(n), char(n), decimal(p, q), etc.

  8. case class IntervalDayTimeType(from: String, to: String) extends DataType with Product with Serializable
  9. case class MapType(keyType: DataType, valueType: DataType) extends DataType with Product with Serializable
  10. case class NamedType(name: String, dataType: DataType) extends DataType with Product with Serializable
  11. abstract class NumericType extends PrimitiveType
  12. abstract class PrimitiveType extends DataType
  13. case class RecordType(elems: Seq[DataType]) extends DataType with Product with Serializable
  14. sealed trait TimestampField extends AnyRef
  15. case class TimestampType(field: TimestampField, withTimeZone: Boolean, precision: Option[DataType] = None) extends DataType with Product with Serializable
  16. sealed abstract class TypeParameter extends DataType

    DataType parameter for representing concrete types like timestamp(2), and abstract types like timestamp(p).

  17. case class TypeVariable(name: String) extends TypeParameter with Product with Serializable
  18. case class VarcharType(length: Option[DataType]) extends DataType with Product with Serializable

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. macro def debug(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  7. macro def debug(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. macro def error(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  11. macro def error(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def getPrimitiveType(s: String): DataType
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. macro def info(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  16. macro def info(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def isKnownGenericTypeName(s: String): Boolean
  19. def isPrimitiveTypeName(s: String): Boolean
  20. macro def logAt(logLevel: LogLevel, message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  21. lazy val logger: Logger
    Attributes
    protected[this]
    Definition Classes
    LazyLogger
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def parse(typeName: String): DataType
  26. def parseArgs(typeArgs: String): List[DataType]
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. macro def trace(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  30. macro def trace(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. macro def warn(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  35. macro def warn(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  36. case object AnyType extends PrimitiveType with Product with Serializable
  37. case object BinaryType extends PrimitiveType with Product with Serializable
  38. case object BooleanType extends PrimitiveType with Product with Serializable
  39. case object ByteType extends NumericType with Product with Serializable
  40. case object DateType extends PrimitiveType with Product with Serializable
  41. object DecimalType extends Serializable
  42. case object DoubleType extends FractionType with Product with Serializable
  43. case object FloatType extends FractionType with Product with Serializable
  44. case object IntegerType extends NumericType with Product with Serializable
  45. case object JsonType extends PrimitiveType with Product with Serializable
  46. case object LongType extends NumericType with Product with Serializable
  47. case object NullType extends PrimitiveType with Product with Serializable
  48. case object RealType extends FractionType with Product with Serializable
  49. case object ShortType extends NumericType with Product with Serializable
  50. case object StringType extends PrimitiveType with Product with Serializable
  51. object TimestampField
  52. case object UnknownType extends PrimitiveType with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from LogSupport

Inherited from LazyLogger

Inherited from LoggingMethods

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped