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

technology.dice.dicewhere.downloader.actions.ipinfo.IpInfoFormat Maven / Gradle / Ivy

The newest version!
package technology.dice.dicewhere.downloader.actions.ipinfo;

public enum IpInfoFormat {
  BINARY("mmdb");

  private final String suffix;

  IpInfoFormat(String suffix) {
    this.suffix = suffix;
  }

  public String getSuffix() {
    return suffix;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy