Class GeoLocationInformation

java.lang.Object
org.graylog.plugins.map.geoip.GeoLocationInformation

public abstract class GeoLocationInformation extends Object
  • Constructor Details

    • GeoLocationInformation

      public GeoLocationInformation()
  • Method Details

    • latitude

      @Nullable public abstract Double latitude()
    • longitude

      @Nullable public abstract Double longitude()
    • countryIsoCode

      @Nullable public abstract String countryIsoCode()
    • countryName

      @Nullable public abstract String countryName()
    • cityName

      @Nullable public abstract String cityName()
    • region

      @Nullable public abstract String region()
    • timeZone

      @Nullable public abstract String timeZone()
    • create

      public static GeoLocationInformation create(double latitude, double longitude, String countryIsoCode, String countryName, String cityName, String region, String timeZone)