public static enum SysMLProfile.FlowDirectionKindEnum extends java.lang.Enum<SysMLProfile.FlowDirectionKindEnum>
Enum Constant and Description |
---|
IN
Indicates that the flow property is input to the owning block.
|
INOUT
Indicates that the flow property is both an input and an output of the owning block.
|
OUT
Indicates that the flow property is an output of the owning block.
|
Modifier and Type | Method and 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.
|
public static final SysMLProfile.FlowDirectionKindEnum IN
public static final SysMLProfile.FlowDirectionKindEnum OUT
public static final SysMLProfile.FlowDirectionKindEnum INOUT
public static SysMLProfile.FlowDirectionKindEnum[] values()
for (SysMLProfile.FlowDirectionKindEnum c : SysMLProfile.FlowDirectionKindEnum.values()) System.out.println(c);
public static SysMLProfile.FlowDirectionKindEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getText()
@CheckForNull public static SysMLProfile.FlowDirectionKindEnum from(@CheckForNull java.lang.Object o)
@CheckForNull public static SysMLProfile.FlowDirectionKindEnum toEnum(EnumerationLiteral literal)
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(SysMLProfile profile, SysMLProfile.FlowDirectionKindEnum anEnum)