Package com.nomagic.magicdraw.sysml.util
Enum SysMLProfile.FlowDirectionKindEnum
- java.lang.Object
-
- java.lang.Enum<SysMLProfile.FlowDirectionKindEnum>
-
- com.nomagic.magicdraw.sysml.util.SysMLProfile.FlowDirectionKindEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SysMLProfile.FlowDirectionKindEnum>
- Enclosing class:
- SysMLProfile
public static enum SysMLProfile.FlowDirectionKindEnum extends java.lang.Enum<SysMLProfile.FlowDirectionKindEnum>
FlowDirection is an enumeration type that defines literals used for specifying input and output directions. FlowDirection is used by flow properties to indicate if a property is an input or an output with respect to its owner.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SysMLProfile.FlowDirectionKindEnum
from(java.lang.Object o)
java.lang.String
getText()
static SysMLProfile.FlowDirectionKindEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(SysMLProfile profile, SysMLProfile.FlowDirectionKindEnum anEnum)
static SysMLProfile.FlowDirectionKindEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SysMLProfile.FlowDirectionKindEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN
public static final SysMLProfile.FlowDirectionKindEnum IN
Indicates that the flow property is input to the owning block.
-
OUT
public static final SysMLProfile.FlowDirectionKindEnum OUT
Indicates that the flow property is an output of the owning block.
-
INOUT
public static final SysMLProfile.FlowDirectionKindEnum INOUT
Indicates that the flow property is both an input and an output of the owning block.
-
-
Method Detail
-
values
public static SysMLProfile.FlowDirectionKindEnum[] 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 (SysMLProfile.FlowDirectionKindEnum c : SysMLProfile.FlowDirectionKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SysMLProfile.FlowDirectionKindEnum 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 SysMLProfile.FlowDirectionKindEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static SysMLProfile.FlowDirectionKindEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(SysMLProfile profile, SysMLProfile.FlowDirectionKindEnum anEnum)
-
-