com.cisco.trex.stateless.model.vm.VariableOperation 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.stateless.model.vm;
public enum VariableOperation {
INC("inc"),
DEC("dec"),
RANDOM("random");
String op;
VariableOperation(String op) {
this.op = op;
}
String getValue() {
return op;
}
}