All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.trex.util.TRexServerMode Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.util;

/** Class represent for Trex Server Mode */
public enum TRexServerMode {
  ASTF("ASTF"),
  STL("STL"),
  UNKNOWN("UNKNOWN");

  private String serverMode;

  TRexServerMode(String serverMode) {
    this.serverMode = serverMode;
  }

  public String getServerMode() {
    return this.serverMode;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy