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

com.cisco.trex.stateless.model.vm.VariableOperation Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy