Package com.nomagic.updm.utils
Enum UPDMProfile.GeoPoliticalExtentKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.GeoPoliticalExtentKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.GeoPoliticalExtentKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.GeoPoliticalExtentKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.GeoPoliticalExtentKindEnum extends java.lang.Enum<UPDMProfile.GeoPoliticalExtentKindEnum>
Enumeration of geopolitical extent kinds, used to support the geoPoliticalExtentKind tag of the geoPoliticalExtent stereotype.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNTRY
A political state or nation or its territory.FACILITY
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.GEOFEATURE
An object that encompasses meteorological, geographic, and control features mission significance.INSTALLATION
A base, camp, post, station, yard, center, or other activity, including leased facilities, without regard to the duration of operational control.OTHER
Other GeoPoliticalExtent kind that is not on the enumerated list.REGIONOFCOUNTRY
A large, usually continuous segment of a political state or nation or its territory.REGIONOFWORLD
A large, usually continuous segment of a surface or space; area.SITE
Physical (geographic) location that is or was owned by, leased to, or otherwise possessed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.GeoPoliticalExtentKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.GeoPoliticalExtentKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.GeoPoliticalExtentKindEnum anEnum)
static UPDMProfile.GeoPoliticalExtentKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.GeoPoliticalExtentKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOFEATURE
public static final UPDMProfile.GeoPoliticalExtentKindEnum GEOFEATURE
An object that encompasses meteorological, geographic, and control features mission significance.
-
REGIONOFCOUNTRY
public static final UPDMProfile.GeoPoliticalExtentKindEnum REGIONOFCOUNTRY
A large, usually continuous segment of a political state or nation or its territory.
-
COUNTRY
public static final UPDMProfile.GeoPoliticalExtentKindEnum COUNTRY
A political state or nation or its territory.
-
REGIONOFWORLD
public static final UPDMProfile.GeoPoliticalExtentKindEnum REGIONOFWORLD
A large, usually continuous segment of a surface or space; area.
-
FACILITY
public static final UPDMProfile.GeoPoliticalExtentKindEnum FACILITY
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.
-
SITE
public static final UPDMProfile.GeoPoliticalExtentKindEnum SITE
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.
-
INSTALLATION
public static final UPDMProfile.GeoPoliticalExtentKindEnum INSTALLATION
A 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.
-
OTHER
public static final UPDMProfile.GeoPoliticalExtentKindEnum OTHER
Other GeoPoliticalExtent kind that is not on the enumerated list.
-
-
Method Detail
-
values
public static UPDMProfile.GeoPoliticalExtentKindEnum[] 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 (UPDMProfile.GeoPoliticalExtentKindEnum c : UPDMProfile.GeoPoliticalExtentKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UPDMProfile.GeoPoliticalExtentKindEnum 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 namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static UPDMProfile.GeoPoliticalExtentKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.GeoPoliticalExtentKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.GeoPoliticalExtentKindEnum anEnum)
-
-