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

mServer.crawler.sender.newsearch.GeoLocations Maven / Gradle / Ivy

There is a newer version: 3.1.64
Show newest version
package mServer.crawler.sender.newsearch;

/**
 * The available GEO locations.
 */
public enum GeoLocations
{
    GEO_NONE(""), // nur in .. zu sehen
    GEO_DE("DE"),
    GEO_DE_FR("DE-FR"),
    GEO_AT("AT"),
    GEO_CH("CH"),
    GEO_WELT("WELT"),
    GEO_DE_AT_CH("DE-AT-CH"),
    GEO_DE_AT_CH_EU("DE-AT-CH-EU");

    private final String description;

    GeoLocations(String aDescription)
    {
        description = aDescription;
    }

    public String getDescription()
    {
        return description;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy