Package com.nomagic.magicdraw.uaf
Enum UAF.OperationalExchangeKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.OperationalExchangeKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.OperationalExchangeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.OperationalExchangeKindEnum>
- Enclosing class:
- UAF
public static enum UAF.OperationalExchangeKindEnum extends java.lang.Enum<UAF.OperationalExchangeKindEnum>
Enumeration of the possible kinds of operational exchange applicable to an OperationalExchange.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURATIONEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where CapabilityConfigurations flow from one OperationalPerformer to another.ENERGYEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where energy is flowed from one OperationalPerformer to another.GEOPOLITICALEXTENTEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where GeoPoliticalExtentTypes (i.e.INFORMATIONEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where information is flowed from one OperationalPerformer to another.MATERIELEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow of materiel (artifacts) between Functions.ORGANIZATIONALEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where human resources (PostTypes, RoleTypes) flow between OperationalPerformers.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UAF.OperationalExchangeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.OperationalExchangeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.OperationalExchangeKindEnum anEnum)
static UAF.OperationalExchangeKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.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 UAF.OperationalExchangeKindEnum MATERIELEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow of materiel (artifacts) between Functions.
-
ORGANIZATIONALEXCHANGE
public static final UAF.OperationalExchangeKindEnum ORGANIZATIONALEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where human resources (PostTypes, RoleTypes) flow between OperationalPerformers.
-
ENERGYEXCHANGE
public static final UAF.OperationalExchangeKindEnum ENERGYEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where energy is flowed from one OperationalPerformer to another.
-
INFORMATIONEXCHANGE
public static final UAF.OperationalExchangeKindEnum INFORMATIONEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where information is flowed from one OperationalPerformer to another.
-
CONFIGURATIONEXCHANGE
public static final UAF.OperationalExchangeKindEnum CONFIGURATIONEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where CapabilityConfigurations flow from one OperationalPerformer to another.
-
GEOPOLITICALEXTENTEXCHANGE
public static final UAF.OperationalExchangeKindEnum GEOPOLITICALEXTENTEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where GeoPoliticalExtentTypes (i.e. Borders) flow from one place to another.
-
-
Method Detail
-
values
public static UAF.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 (UAF.OperationalExchangeKindEnum c : UAF.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 UAF.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 UAF.OperationalExchangeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.OperationalExchangeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.OperationalExchangeKindEnum anEnum)
-
-