Package com.nomagic.magicdraw.uaf
Enum UAF.ServiceExchangeKindEnum
- java.lang.Object
-
- java.lang.Enum<UAF.ServiceExchangeKindEnum>
-
- com.nomagic.magicdraw.uaf.UAF.ServiceExchangeKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UAF.ServiceExchangeKindEnum>
- Enclosing class:
- UAF
public static enum UAF.ServiceExchangeKindEnum extends java.lang.Enum<UAF.ServiceExchangeKindEnum>
Enumeration of the possible kinds of ServiceExchange.
-
-
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.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.ServiceExchangeKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static UAF.ServiceExchangeKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(UAF profile, UAF.ServiceExchangeKindEnum anEnum)
static UAF.ServiceExchangeKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UAF.ServiceExchangeKindEnum[]
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.ServiceExchangeKindEnum MATERIELEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow of materiel (artifacts) between Functions.
-
ORGANIZATIONALEXCHANGE
public static final UAF.ServiceExchangeKindEnum 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.ServiceExchangeKindEnum 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.ServiceExchangeKindEnum 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.ServiceExchangeKindEnum CONFIGURATIONEXCHANGE
Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where CapabilityConfigurations flow from one OperationalPerformer to another.
-
-
Method Detail
-
values
public static UAF.ServiceExchangeKindEnum[] 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.ServiceExchangeKindEnum c : UAF.ServiceExchangeKindEnum.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.ServiceExchangeKindEnum 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.ServiceExchangeKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UAF.ServiceExchangeKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(UAF profile, UAF.ServiceExchangeKindEnum anEnum)
-
-