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

com.cisco.trex.stateless.model.capture.CaptureActions Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateless.model.capture;

public enum CaptureActions {
  START("start"),
  STOP("stop");

  private String command;

  CaptureActions(String command) {
    this.command = command;
  }

  public String getCommand() {
    return command;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy