getFieldValue method

dynamic getFieldValue(
  1. int fieldID
)
override

Get a field's value by fieldId. Primitive types will be wrapped in the appropriate "boxed" types.

Implementation

getFieldValue(int fieldID) {
  switch (fieldID) {
    case YEAR:
      return this.year;
    case MONTH:
      return this.month;
    case DAY:
      return this.day;
    case HOUR:
      return this.hour;
    case MINUTE:
      return this.minute;
    case SEC:
      return this.sec;
    case MICROSEC:
      return this.microsec;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}