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

de.gwdg.metadataqa.marc.cli.parameters.NetworkAction Maven / Gradle / Ivy

package de.gwdg.metadataqa.marc.cli.parameters;

public enum NetworkAction {
  PRIMARY("primary"),
  PAIRING("pairing")
  ;

  private String label;

  NetworkAction(String label) {
    this.label = label;
  }

  public String getLabel() {
    return label;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy