Packages

package types

Type Members

  1. final class ByteArray extends AnyRef
  2. final class CalendarInterval extends Serializable

    The class representing calendar intervals.

    The class representing calendar intervals. The calendar interval is stored internally in three components:

    • an integer value representing the number of months in this interval,
    • an integer value representing the number of days in this interval,
    • a long value representing the number of microseconds in this interval.

    The months and days are not units of time with a constant length (unlike hours, seconds), so they are two separated fields from microseconds. One month may be equal to 28, 29, 30 or 31 days and one day may be equal to 23, 24 or 25 hours (daylight saving).

    Since

    3.0.0

  3. final class UTF8String extends Comparable[UTF8String] with Externalizable with KryoSerializable with Cloneable

    A UTF-8 String for internal Spark use.

    A UTF-8 String for internal Spark use.

    A String encoded in UTF-8 as an Array[Byte], which can be used for comparison, search, see http://en.wikipedia.org/wiki/UTF-8 for details.

    Note: This is not designed for general use cases, should not be used outside SQL.

Ungrouped