Package 

Class GeoEntityUtility


  • 
    public final class GeoEntityUtility
    
                        

    Utility class for checking whether identifiers region code and country calling code belong to geographical entities. For more information about geo vs. non-geo entities see and

    • Method Summary

      Modifier and Type Method Description
      static boolean isGeoEntity(String regionCode) Determines whether {@code regionCode} belongs to a geographical entity.
      static boolean isGeoEntity(int countryCallingCode) Determines whether {@code countryCallingCode} belongs to a geographical entity.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • isGeoEntity

         static boolean isGeoEntity(String regionCode)

        Determines whether {@code regionCode} belongs to a geographical entity.

      • isGeoEntity

         static boolean isGeoEntity(int countryCallingCode)

        Determines whether {@code countryCallingCode} belongs to a geographical entity.

        A single country calling code could map to several different regions. It is considered that {@code countryCallingCode} belongs to a geo entity if all of these regions are geo entities

        Note that this method will not throw an exception even when the underlying mapping for the {@code countryCallingCode} does not exist, instead it will return {@code false}