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

technology.dice.dicewhere.downloader.actions.maxmind.MaxmindFormat Maven / Gradle / Ivy

There is a newer version: 1.3.12
Show newest version
package technology.dice.dicewhere.downloader.actions.maxmind;

public enum MaxmindFormat {
  BINARY("", "tar.gz"),
  CSV("-CSV", "zip");

  private final String suffix;
  private final String remoteName;

  MaxmindFormat(String remoteName, String suffix) {
    this.remoteName = remoteName;
    this.suffix = suffix;
  }

  public String getSuffix() {
    return suffix;
  }

  public String getRemoteName() {
    return remoteName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy