Package com.nomagic.updm.utils
Enum UPDMProfile.ExchangeElementKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.ExchangeElementKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.ExchangeElementKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.ExchangeElementKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.ExchangeElementKindEnum extends java.lang.Enum<UPDMProfile.ExchangeElementKindEnum>
Enumeration of the types of element being exchanged on an information exchange.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATAELEMENT
A formalized representation of data which is managed by or exchanged between resources.INFORMATIONELEMENT
An item of information that flows between Operational Activities and Nodes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.ExchangeElementKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.ExchangeElementKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.ExchangeElementKindEnum anEnum)
static UPDMProfile.ExchangeElementKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.ExchangeElementKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFORMATIONELEMENT
public static final UPDMProfile.ExchangeElementKindEnum INFORMATIONELEMENT
An item of information that flows between Operational Activities and Nodes. The structure of an InformationElement may be defined using a LogicalDataModel.
-
DATAELEMENT
public static final UPDMProfile.ExchangeElementKindEnum DATAELEMENT
A formalized representation of data which is managed by or exchanged between resources.
-
-
Method Detail
-
values
public static UPDMProfile.ExchangeElementKindEnum[] 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.ExchangeElementKindEnum c : UPDMProfile.ExchangeElementKindEnum.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.ExchangeElementKindEnum 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.ExchangeElementKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.ExchangeElementKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.ExchangeElementKindEnum anEnum)
-
-