@@ -18,7 +18,7 @@ public interface DatabaseProvider extends GeoIp2Provider {
1818
1919 /**
2020 * @param ipAddress IPv4 or IPv6 address to lookup.
21- * @return A Country model for the requested IP address or empty if the IP address is not in the DB.
21+ * @return A Country model for the requested IP address or empty if it is not in the DB.
2222 * @throws GeoIp2Exception if there is an error looking up the IP
2323 * @throws IOException if there is an IO error
2424 */
@@ -27,7 +27,7 @@ Optional<CountryResponse> tryCountry(InetAddress ipAddress) throws IOException,
2727
2828 /**
2929 * @param ipAddress IPv4 or IPv6 address to lookup.
30- * @return A City model for the requested IP address or empty if the IP address is not in the DB.
30+ * @return A City model for the requested IP address or empty if it is not in the DB.
3131 * @throws GeoIp2Exception if there is an error looking up the IP
3232 * @throws IOException if there is an IO error
3333 */
@@ -49,7 +49,7 @@ AnonymousIpResponse anonymousIp(InetAddress ipAddress) throws IOException,
4949 * Look up an IP address in a GeoIP2 Anonymous IP.
5050 *
5151 * @param ipAddress IPv4 or IPv6 address to lookup.
52- * @return a AnonymousIpResponse for the requested IP address or empty if the IP address is not in the DB.
52+ * @return a AnonymousIpResponse for the requested IP address or empty if it is not in the DB.
5353 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
5454 * @throws java.io.IOException if there is an IO error
5555 */
@@ -72,7 +72,7 @@ IpRiskResponse ipRisk(InetAddress ipAddress) throws IOException,
7272 * Look up an IP address in a GeoIP2 IP Risk database.
7373 *
7474 * @param ipAddress IPv4 or IPv6 address to lookup.
75- * @return an IPRiskResponse for the requested IP address or empty if the IP address is not in the DB.
75+ * @return an IPRiskResponse for the requested IP address or empty if it is not in the DB.
7676 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
7777 * @throws java.io.IOException if there is an IO error
7878 */
@@ -94,7 +94,7 @@ AsnResponse asn(InetAddress ipAddress) throws IOException,
9494 * Look up an IP address in a GeoLite2 ASN database.
9595 *
9696 * @param ipAddress IPv4 or IPv6 address to lookup.
97- * @return an IspResponse for the requested IP address or empty if the IP address is not in the DB.
97+ * @return an IspResponse for the requested IP address or empty if it is not in the DB.
9898 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
9999 * @throws java.io.IOException if there is an IO error
100100 */
@@ -116,7 +116,7 @@ ConnectionTypeResponse connectionType(InetAddress ipAddress)
116116 * Look up an IP address in a GeoIP2 Connection Type database.
117117 *
118118 * @param ipAddress IPv4 or IPv6 address to lookup.
119- * @return a ConnectTypeResponse for the requested IP address or empty if the IP address is not in the DB.
119+ * @return a ConnectTypeResponse for the requested IP address or empty if it is not in the DB.
120120 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
121121 * @throws java.io.IOException if there is an IO error
122122 */
@@ -138,7 +138,7 @@ DomainResponse domain(InetAddress ipAddress) throws IOException,
138138 * Look up an IP address in a GeoIP2 Domain database.
139139 *
140140 * @param ipAddress IPv4 or IPv6 address to lookup.
141- * @return a DomainResponse for the requested IP address or empty if the IP address is not in the DB.
141+ * @return a DomainResponse for the requested IP address or empty if it is not in the DB.
142142 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
143143 * @throws java.io.IOException if there is an IO error
144144 */
@@ -160,7 +160,7 @@ EnterpriseResponse enterprise(InetAddress ipAddress) throws IOException,
160160 * Look up an IP address in a GeoIP2 Enterprise database.
161161 *
162162 * @param ipAddress IPv4 or IPv6 address to lookup.
163- * @return an EnterpriseResponse for the requested IP address or empty if the IP address is not in the DB.
163+ * @return an EnterpriseResponse for the requested IP address or empty if it is not in the DB.
164164 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
165165 * @throws java.io.IOException if there is an IO error
166166 */
@@ -181,7 +181,7 @@ IspResponse isp(InetAddress ipAddress) throws IOException,
181181 /**
182182 * Look up an IP address in a GeoIP2 ISP database.
183183 *
184- * @param ipAddress IPv4 or IPv6 address to look up or empty if the IP address is not in the DB.
184+ * @param ipAddress IPv4 or IPv6 address to look up or empty if it is not in the DB.
185185 * @return an IspResponse for the requested IP address.
186186 * @throws com.maxmind.geoip2.exception.GeoIp2Exception if there is an error looking up the IP
187187 * @throws java.io.IOException if there is an IO error
0 commit comments