stringValue method

String stringValue()

String value of GeoSerieType Enum.

Implementation

String stringValue() {
  switch (this) {
    case GeoSerieType.group:
      return "group";
    case GeoSerieType.line:
      return "line";
    case GeoSerieType.polygon:
      return "polygon";
  }
}