toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ColumnNullable.notNull:
      return 'NOT_NULL';
    case ColumnNullable.nullable:
      return 'NULLABLE';
    case ColumnNullable.unknown:
      return 'UNKNOWN';
  }
}