toPresentationString method

String toPresentationString()

Implementation

String toPresentationString() {
  switch (this) {
    case NearbyStrategies.cluster:
      return "Cluster";
    case NearbyStrategies.star:
      return "Star";
    case NearbyStrategies.pointToPoint:
      return "Point to Point";
  }
}