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

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

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

public enum MaxmindDatabase {
  City("City"),
  Anonymous("Anonymous-IP");

  private final String remoteName;

  MaxmindDatabase(String name) {
    this.remoteName = name;
  }

  public String getRemoteName() {
    return remoteName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy