Open Kilda Java Documentation
StatsUtil.java
Go to the documentation of this file.
1 package org.openkilda.wfm.topology.utils;
2 
3 public class StatsUtil {
4 
5  public static String formatSwitchId(String switchId)
6  {
7  return "SW" + switchId.replaceAll(":", "").toUpperCase();
8  }
9 }
static String formatSwitchId(String switchId)
Definition: StatsUtil.java:5