public enum EnumCM_FlowDirection extends java.lang.Enum<EnumCM_FlowDirection>
| Enum Constant and Description |
|---|
ANTEGRADE_FLOW |
LEFT_TO_RIGHT_CARDIOVASCULAR_SHUNT |
REGURGITANT_FLOW |
RETROGRADE_FLOW |
RIGHT_TO_LEFT_CARDIOVASCULAR_SHUNT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_FlowDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_FlowDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_FlowDirection ANTEGRADE_FLOW
public static final EnumCM_FlowDirection RETROGRADE_FLOW
public static final EnumCM_FlowDirection REGURGITANT_FLOW
public static final EnumCM_FlowDirection LEFT_TO_RIGHT_CARDIOVASCULAR_SHUNT
public static final EnumCM_FlowDirection RIGHT_TO_LEFT_CARDIOVASCULAR_SHUNT
public static EnumCM_FlowDirection[] values()
for (EnumCM_FlowDirection c : EnumCM_FlowDirection.values()) System.out.println(c);
public static EnumCM_FlowDirection 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 getValue()