abstract classPartialTime extends Ordered[PartialTime] with Serializable
PartialTime is a "gross" time concept.
It's closer to a "bussiness" concept than scientific or engineering concept.
We currently have Quarter, Month, and Day
A PartialTime represented in DF as a String column, and typically named as
smvTime with values such as "Q201301", "M201312", "D20130423".
A PartialTime can also represented as timeType + timeIndex, e.g.
"M201512" => (timeType = "month", timeIndex = 551)
Where timeIndex is an integere which count from 1970-01-01.
A PartialTime also has a timeLabel which is a human readable string
PartialTime is a "gross" time concept. It's closer to a "bussiness" concept than scientific or engineering concept. We currently have Quarter, Month, and Day
A PartialTime represented in DF as a String column, and typically named as
smvTimewith values such as "Q201301", "M201312", "D20130423".A PartialTime can also represented as
timeType+timeIndex, e.g. "M201512" => (timeType = "month", timeIndex = 551) WheretimeIndexis an integere which count from 1970-01-01.A PartialTime also has a
timeLabelwhich is a human readable string