toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Gid.none:
      return 'NONE';
    case Gid.intValue:
      return 'INT_VALUE';
    case Gid.name:
      return 'NAME';
    case Gid.both:
      return 'BOTH';
  }
}