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