public static SniProxyImplementation valueOfIgnoreCase()

in geode-benchmarks/src/main/java/org/apache/geode/benchmark/topology/ClientServerTopologyWithSniProxy.java [56:63]


    public static SniProxyImplementation valueOfIgnoreCase(final String name) {
      for (SniProxyImplementation sniProxyImplementation : SniProxyImplementation.values()) {
        if (sniProxyImplementation.name().equalsIgnoreCase(name)) {
          return sniProxyImplementation;
        }
      }
      throw new IllegalArgumentException();
    }