Package com.nomagic.updm.utils
Enum UPDMProfile.InformationKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.InformationKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.InformationKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.InformationKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.InformationKindEnum extends java.lang.Enum<UPDMProfile.InformationKindEnum>
Enumeration of kinds of information, derived from MODAF and DoDAF, used to support the InformationKind tag of the Information stereotype.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA
Representation of information in a formalized manner suitable for communication, interpretation, or processing by humans or by automatic means.DOMAININFORMATION
Types of information within the scope or domain of the architecture.INFORMATION
Information is the state of a something of interest that is materialized -- in any medium or form -- and communicated or received.PEDIGREEINFORMATION
Information describing pedigree.POSITIONREFERENCEFRAME
An arbitrary set of axes with reference to which the position or motion of something is described or physical laws are formulated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.InformationKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.InformationKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.InformationKindEnum anEnum)
static UPDMProfile.InformationKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.InformationKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFORMATION
public static final UPDMProfile.InformationKindEnum INFORMATION
Information is the state of a something of interest that is materialized -- in any medium or form -- and communicated or received.
-
DOMAININFORMATION
public static final UPDMProfile.InformationKindEnum DOMAININFORMATION
Types of information within the scope or domain of the architecture.
-
POSITIONREFERENCEFRAME
public static final UPDMProfile.InformationKindEnum POSITIONREFERENCEFRAME
An arbitrary set of axes with reference to which the position or motion of something is described or physical laws are formulated.
-
PEDIGREEINFORMATION
public static final UPDMProfile.InformationKindEnum PEDIGREEINFORMATION
Information describing pedigree.
-
DATA
public static final UPDMProfile.InformationKindEnum DATA
Representation of information in a formalized manner suitable for communication, interpretation, or processing by humans or by automatic means. Examples could be whole models, packages, entities, attributes, classes, domain values, enumeration values, records, tables, rows, columns, and fields.
-
-
Method Detail
-
values
public static UPDMProfile.InformationKindEnum[] 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.InformationKindEnum c : UPDMProfile.InformationKindEnum.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.InformationKindEnum 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.InformationKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.InformationKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.InformationKindEnum anEnum)
-
-