Package com.nomagic.updm.utils
Enum UPDMProfile.OperationalExchangeKindEnum
- java.lang.Object
-
- java.lang.Enum<UPDMProfile.OperationalExchangeKindEnum>
-
- com.nomagic.updm.utils.UPDMProfile.OperationalExchangeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UPDMProfile.OperationalExchangeKindEnum>
- Enclosing class:
- UPDMProfile
public static enum UPDMProfile.OperationalExchangeKindEnum extends java.lang.Enum<UPDMProfile.OperationalExchangeKindEnum>
Enumeration of operational exchange kinds, used to support the exchangeKind tag of the OperationalExchange stereotype.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURATIONEXCHANGE
A LogicalFlow where CapabilityConfigurations flow from one node to another.ENERGYEXCHANGE
A LogicalFlow where energy is flowed from one node to another.GEOPOLITICALEXTENTEXCHANGE
A LogicalFlow where GeoPoliticalExtents (i.e.INFORMATIONEXCHANGE
A LogicalFlow where energy is flowed from one node to another.MATERIELEXCHANGE
A flow of materiel (artifacts) between Functions.ORGANIZATIONALEXCHANGE
A LogicalFlow where human resources (PostTypes, RoleTypes) flow between Nodes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UPDMProfile.OperationalExchangeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UPDMProfile.OperationalExchangeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UPDMProfile profile, UPDMProfile.OperationalExchangeKindEnum anEnum)
static UPDMProfile.OperationalExchangeKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UPDMProfile.OperationalExchangeKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MATERIELEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum MATERIELEXCHANGE
A flow of materiel (artifacts) between Functions.
-
ORGANIZATIONALEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum ORGANIZATIONALEXCHANGE
A LogicalFlow where human resources (PostTypes, RoleTypes) flow between Nodes.
-
ENERGYEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum ENERGYEXCHANGE
A LogicalFlow where energy is flowed from one node to another.
-
INFORMATIONEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum INFORMATIONEXCHANGE
A LogicalFlow where energy is flowed from one node to another.
-
CONFIGURATIONEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum CONFIGURATIONEXCHANGE
A LogicalFlow where CapabilityConfigurations flow from one node to another.
-
GEOPOLITICALEXTENTEXCHANGE
public static final UPDMProfile.OperationalExchangeKindEnum GEOPOLITICALEXTENTEXCHANGE
A LogicalFlow where GeoPoliticalExtents (i.e. Borders) flow from one place to another.
-
-
Method Detail
-
values
public static UPDMProfile.OperationalExchangeKindEnum[] 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.OperationalExchangeKindEnum c : UPDMProfile.OperationalExchangeKindEnum.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.OperationalExchangeKindEnum 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.OperationalExchangeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UPDMProfile.OperationalExchangeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UPDMProfile profile, UPDMProfile.OperationalExchangeKindEnum anEnum)
-
-