Class TimestampType

Object
org.apache.spark.sql.types.DataType
org.apache.spark.sql.types.TimestampType

public class TimestampType extends DataType
The timestamp type represents a time instant in microsecond precision. Valid range is [0001-01-01T00:00:00.000000Z, 9999-12-31T23:59:59.999999Z] where the left/right-bound is a date and time of the proleptic Gregorian calendar in UTC+00:00.

Please use the singleton DataTypes.TimestampType to refer the type.

Since:
1.3.0
  • Constructor Details

    • TimestampType

      public TimestampType()
  • Method Details

    • typeName

      public static String typeName()
    • json

      public static String json()
    • prettyJson

      public static String prettyJson()
    • simpleString

      public static String simpleString()
    • catalogString

      public static String catalogString()
    • sql

      public static String sql()
    • canEqual

      public abstract static boolean canEqual(Object that)
    • equals

      public abstract static boolean equals(Object that)
    • productElement

      public abstract static Object productElement(int n)
    • productArity

      public abstract static int productArity()
    • productIterator

      public static scala.collection.Iterator<Object> productIterator()
    • productPrefix

      public static String productPrefix()
    • defaultSize

      public int defaultSize()
      The default size of a value of the TimestampType is 8 bytes.
      Specified by:
      defaultSize in class DataType
      Returns:
      (undocumented)