@author Fred Toussi (fredt@users dot sourceforge.net) @version 1.9.0 @since 1.9.0
2054205520562057205820592060206120622063
type.startIntervalType, type.endIntervalType, intervalPrecision, fractionPrecision, false); } if (type.endPartIndex <= DTIType.INTERVAL_MONTH_INDEX) { return new IntervalMonthData(units); } else { return new IntervalSecondData(units, fraction); } }
171172173174175176177
protected IntervalMonthData readYearMonthInterval(Type type) throws IOException { long months = readLong(); return new IntervalMonthData(months, (IntervalType) type); }