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

com.maxmind.geoip2.record.Continent Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package com.maxmind.geoip2.record;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * 

* Contains data for the continent record associated with an IP address. *

*

* This record is returned by all the end points. *

*/ public final class Continent extends AbstractNamedRecord { @JsonProperty("code") private String code; /** * @return A two character continent code like "NA" (North America) or "OC" * (Oceania). This attribute is returned by all end points. */ public String getCode() { return this.code; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy