Enum UAF.GeoPoliticalExtentTypeKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      COUNTRYTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of political state, nation or its territory.
      FACILITYTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of a real property entity consisting of underlying land and one or more of the following: a building, a structure (including linear structures), a utility system, or pavement.
      GEOFEATURETYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of object that encompasses meteorological, geographic, and control features mission significance.
      INSTALLATIONTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of base, camp, post, station, yard, center, or other activity, including leased facilities, without regard to the duration of operational control.
      OTHERTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type not covered by the standard GeoPoliticalExtentTypeKinds.
      REGIONOFCOUNTRYTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of large, usually continuous segment of a political state, nation or its territory.
      REGIONOFWORLDTYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of large, usually continuous segment of a surface or space; area.
      SITETYPE
      Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of Physical (geographic) location that is or was owned by, leased to, or otherwise possessed.
    • Enum Constant Detail

      • GEOFEATURETYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum GEOFEATURETYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of object that encompasses meteorological, geographic, and control features mission significance.
      • REGIONOFCOUNTRYTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum REGIONOFCOUNTRYTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of large, usually continuous segment of a political state, nation or its territory.
      • COUNTRYTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum COUNTRYTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of political state, nation or its territory.
      • REGIONOFWORLDTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum REGIONOFWORLDTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of large, usually continuous segment of a surface or space; area.
      • FACILITYTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum FACILITYTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of a real property entity consisting of underlying land and one or more of the following: a building, a structure (including linear structures), a utility system, or pavement.
      • SITETYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum SITETYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of Physical (geographic) location that is or was owned by, leased to, or otherwise possessed. Each site is assigned to a single installation. A site may exist in one of three forms: (1) Land only, where there are no facilities present and where the land consists of either a single land parcel or two or more contiguous land parcels. (2) Facility or facilities only, where the underlying land is neither owned nor controlled by the government. A stand-alone facility can be a site. If a facility is not a stand-alone facility, it must be assigned to a site. (3). Land and all the facilities thereon, where the land consists of either a single land parcel or two or more contiguous land parcels.
      • INSTALLATIONTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum INSTALLATIONTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type of base, camp, post, station, yard, center, or other activity, including leased facilities, without regard to the duration of operational control. An installation may include one or more sites.
      • OTHERTYPE

        public static final UAF.GeoPoliticalExtentTypeKindEnum OTHERTYPE
        Indicates that the GeoPoliticalExtentType associated with the GeoPoliticalExtentTypeKind is a type not covered by the standard GeoPoliticalExtentTypeKinds.
    • Method Detail

      • values

        public static UAF.GeoPoliticalExtentTypeKindEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UAF.GeoPoliticalExtentTypeKindEnum c : UAF.GeoPoliticalExtentTypeKindEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UAF.GeoPoliticalExtentTypeKindEnum valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getText

        public java.lang.String getText()