Class TimeColumn


public class TimeColumn extends DateTimeColumn
Time column supporting custom formatting and zero-padding for null values.
  • Constructor Details

    • TimeColumn

      public TimeColumn(String name, String format, String description)
      Constructs a new TimeColumn with a name, format, and description.
      Parameters:
      name - the column name
      format - Python-style time format string
      description - human-readable description
    • TimeColumn

      public TimeColumn(String name, String format)
      Constructs a new TimeColumn with a name and format.
      Parameters:
      name - the column name
      format - Python-style time format string
    • TimeColumn

      public TimeColumn(String name)
      Constructs a new TimeColumn with a name, defaulting to format "%H%M".
      Parameters:
      name - the column name
  • Method Details