Package com.nomagic.updm.utils
Enum UPDMProfile.GeoPoliticalExtentTypeKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.GeoPoliticalExtentTypeKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.GeoPoliticalExtentTypeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.GeoPoliticalExtentTypeKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.GeoPoliticalExtentTypeKindEnum extends java.lang.Enum<UPDMProfile.GeoPoliticalExtentTypeKindEnum>
Enumeration of kinds of geopolitical extent type, derived from DoDAF, used to support the geoPoliticalExtentTypeKind tag of the GeopoliticalExtentType stereotype.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNTRYTYPE
Powertype Of Country.FACILITYTYPE
Powertype Of Facility.GEOFEATURETYPE
Powertype Of GeoFeature.INSTALLATIONTYPE
Powertype Of Installation.OTHERTYPE
Other GeoPoliticalExtentType kind that is not on the enumerated list.REGIONOFCOUNTRYTYPE
Powertype Of RegionOfCountry.REGIONOFWORLDTYPE
Powertype Of RegionOfWorld.SITETYPE
Powertype Of Site.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.GeoPoliticalExtentTypeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.GeoPoliticalExtentTypeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.GeoPoliticalExtentTypeKindEnum anEnum)
static UPDMProfile.GeoPoliticalExtentTypeKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.GeoPoliticalExtentTypeKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOFEATURETYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum GEOFEATURETYPE
Powertype Of GeoFeature.
-
REGIONOFCOUNTRYTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum REGIONOFCOUNTRYTYPE
Powertype Of RegionOfCountry.
-
COUNTRYTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum COUNTRYTYPE
Powertype Of Country.
-
REGIONOFWORLDTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum REGIONOFWORLDTYPE
Powertype Of RegionOfWorld.
-
FACILITYTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum FACILITYTYPE
Powertype Of Facility.
-
SITETYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum SITETYPE
Powertype Of Site.
-
INSTALLATIONTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum INSTALLATIONTYPE
Powertype Of Installation.
-
OTHERTYPE
public static final UPDMProfile.GeoPoliticalExtentTypeKindEnum OTHERTYPE
Other GeoPoliticalExtentType kind that is not on the enumerated list.
-
-
Method Detail
-
values
public static UPDMProfile.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 (UPDMProfile.GeoPoliticalExtentTypeKindEnum c : UPDMProfile.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 UPDMProfile.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 namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static UPDMProfile.GeoPoliticalExtentTypeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.GeoPoliticalExtentTypeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.GeoPoliticalExtentTypeKindEnum anEnum)
-
-