com.cisco.trex.util.TRexServerMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
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;
}
}