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

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

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

public enum IpInfoDataset {
  STANDARD_LOCATION("standard_location"),
  PRIVACY("privacy");

  private final String remoteName;

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

  public String getRemoteName() {
    return remoteName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy