Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface IPIntelligenceData extends AspectData
*/
AspectPropertyValue<String> getConnectionType();
/**
* The 3-character ISO 3166-1 continent code for the supplied location.
* The 2-character ISO 3166-1 continent code for the supplied location.
*/
AspectPropertyValue<String> getContinentCode2();
/**
Expand Down Expand Up @@ -227,7 +227,7 @@ public interface IPIntelligenceData extends AspectData
*/
AspectPropertyValue<String> getTimeZoneIana();
/**
* The offset from UTC in minutes in the supplied location, at the time that the value is produced.
* The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown.
*/
AspectPropertyValue<Integer> getTimeZoneOffset();
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected IPIntelligenceDataBase(
@Override
public AspectPropertyValue<String> getConnectionType() { return getAs("connectiontype", AspectPropertyValue.class, String.class); }
/**
* The 3-character ISO 3166-1 continent code for the supplied location.
* The 2-character ISO 3166-1 continent code for the supplied location.
*/
@SuppressWarnings("unchecked")
@Override
Expand Down Expand Up @@ -339,7 +339,7 @@ protected IPIntelligenceDataBase(
@Override
public AspectPropertyValue<String> getTimeZoneIana() { return getAs("timezoneiana", AspectPropertyValue.class, String.class); }
/**
* The offset from UTC in minutes in the supplied location, at the time that the value is produced.
* The offset from UTC in minutes in the supplied location, at the time that the value is produced. A value of -1 indicates unknown.
*/
@SuppressWarnings("unchecked")
@Override
Expand Down
Loading