Package com.nomagic.updm.utils
Enum UPDMProfile.LocationTypeKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.LocationTypeKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.LocationTypeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UPDMProfile.LocationTypeKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.LocationTypeKindEnum extends java.lang.Enum<UPDMProfile.LocationTypeKindEnum>
Enumeration of kinds of location types, derived from DoDAF, used to support the LocationTypeKind tag of the LocationTypeKind stereotype.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CIRCULARAREATYPEPowertype Of CircularArea.ELIPTICALAREATYPEPowertype Of EllipticalArea.GEOSTATIONARYPOINTTYPEPowertype Of GeoStationaryPoint.LINETYPEPowertype Of Line.OTHERTYPEOther LocationType kind that is not on the enumerated list.PLANARSURFACETYPEPowertype Of PlanarSurface.POINTTYPEPowertype Of Point.POLYGONAREATYPEPowertype Of PolygonArea.RECTANGULARAREATYPEPowertype Of RectangularArea.SOLIDVOLUMETYPEPowertype Of SolidVolume.SURFACETYPEPowertype Of Surface.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.LocationTypeKindEnumfrom(java.lang.Object o)java.lang.StringgetText()static UPDMProfile.LocationTypeKindEnumtoEnum(EnumerationLiteral literal)static EnumerationLiteraltoEnumerationLiteral(UPDMProfile profile, UPDMProfile.LocationTypeKindEnum anEnum)static UPDMProfile.LocationTypeKindEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UPDMProfile.LocationTypeKindEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLIDVOLUMETYPE
public static final UPDMProfile.LocationTypeKindEnum SOLIDVOLUMETYPE
Powertype Of SolidVolume.
-
SURFACETYPE
public static final UPDMProfile.LocationTypeKindEnum SURFACETYPE
Powertype Of Surface.
-
LINETYPE
public static final UPDMProfile.LocationTypeKindEnum LINETYPE
Powertype Of Line.
-
POINTTYPE
public static final UPDMProfile.LocationTypeKindEnum POINTTYPE
Powertype Of Point.
-
GEOSTATIONARYPOINTTYPE
public static final UPDMProfile.LocationTypeKindEnum GEOSTATIONARYPOINTTYPE
Powertype Of GeoStationaryPoint.
-
PLANARSURFACETYPE
public static final UPDMProfile.LocationTypeKindEnum PLANARSURFACETYPE
Powertype Of PlanarSurface.
-
POLYGONAREATYPE
public static final UPDMProfile.LocationTypeKindEnum POLYGONAREATYPE
Powertype Of PolygonArea.
-
RECTANGULARAREATYPE
public static final UPDMProfile.LocationTypeKindEnum RECTANGULARAREATYPE
Powertype Of RectangularArea.
-
ELIPTICALAREATYPE
public static final UPDMProfile.LocationTypeKindEnum ELIPTICALAREATYPE
Powertype Of EllipticalArea.
-
CIRCULARAREATYPE
public static final UPDMProfile.LocationTypeKindEnum CIRCULARAREATYPE
Powertype Of CircularArea.
-
OTHERTYPE
public static final UPDMProfile.LocationTypeKindEnum OTHERTYPE
Other LocationType kind that is not on the enumerated list.
-
-
Method Detail
-
values
public static UPDMProfile.LocationTypeKindEnum[] 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.LocationTypeKindEnum c : UPDMProfile.LocationTypeKindEnum.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.LocationTypeKindEnum 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.LocationTypeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.LocationTypeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.LocationTypeKindEnum anEnum)
-
-