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 CIRCULARAREATYPE
Powertype Of CircularArea.ELIPTICALAREATYPE
Powertype Of EllipticalArea.GEOSTATIONARYPOINTTYPE
Powertype Of GeoStationaryPoint.LINETYPE
Powertype Of Line.OTHERTYPE
Other LocationType kind that is not on the enumerated list.PLANARSURFACETYPE
Powertype Of PlanarSurface.POINTTYPE
Powertype Of Point.POLYGONAREATYPE
Powertype Of PolygonArea.RECTANGULARAREATYPE
Powertype Of RectangularArea.SOLIDVOLUMETYPE
Powertype Of SolidVolume.SURFACETYPE
Powertype Of Surface.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.LocationTypeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.LocationTypeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.LocationTypeKindEnum anEnum)
static UPDMProfile.LocationTypeKindEnum
valueOf(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)
-
-