package types
Type Members
- final class ByteArray extends AnyRef
-
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
monthsin this interval, - an integer value representing the number of
daysin this interval, - a long value representing the number of
microsecondsin this interval.
The
monthsanddaysare 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
- an integer value representing the number of
-
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.