toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DimensionType.inclusive:
      return 'INCLUSIVE';
    case DimensionType.exclusive:
      return 'EXCLUSIVE';
  }
}