toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ScalarAttributeType.s:
      return 'S';
    case ScalarAttributeType.n:
      return 'N';
    case ScalarAttributeType.b:
      return 'B';
  }
}