Package com.nomagic.magicdraw.uaf
Enum UAF.InformationModelKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.InformationModelKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.InformationModelKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.InformationModelKindEnum>
- Enclosing class:
- UAF
public static enum UAF.InformationModelKindEnum extends java.lang.Enum<UAF.InformationModelKindEnum>
Enumeration of the possible kinds of InformationModel.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONCEPTUAL
Indicates that the InformationModel associated with the InformationModelKind is a conceptual InformationModel that defines the required high-level data concepts and their relationships.LOGICAL
Indicates that the InformationModel associated with the InformationModelKind is a logical data model that allows analysis of an architecture s data definition aspect, without consideration of implementation specific or product specific issues.PHYSICAL
Indicates that the InformationModel associated with the InformationModelKind is a physical data model that is an implementable specification of a data structure.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.InformationModelKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.InformationModelKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.InformationModelKindEnum anEnum)
static UAF.InformationModelKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.InformationModelKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONCEPTUAL
public static final UAF.InformationModelKindEnum CONCEPTUAL
Indicates that the InformationModel associated with the InformationModelKind is a conceptual InformationModel that defines the required high-level data concepts and their relationships.
-
LOGICAL
public static final UAF.InformationModelKindEnum LOGICAL
Indicates that the InformationModel associated with the InformationModelKind is a logical data model that allows analysis of an architecture s data definition aspect, without consideration of implementation specific or product specific issues. It details the conceptual data model.
-
PHYSICAL
public static final UAF.InformationModelKindEnum PHYSICAL
Indicates that the InformationModel associated with the InformationModelKind is a physical data model that is an implementable specification of a data structure. A physical data model realizes a logical data model, taking into account implementation restrictions and performance issues while still enforcing the constraints, relationships and typing of the logical data model.
-
-
Method Detail
-
values
public static UAF.InformationModelKindEnum[] 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.InformationModelKindEnum c : UAF.InformationModelKindEnum.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.InformationModelKindEnum 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 UAF.InformationModelKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.InformationModelKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.InformationModelKindEnum anEnum)
-
-