public enum EnumDataType extends java.lang.Enum<EnumDataType>
| Enum Constant and Description |
|---|
ATTENUATION
The ATTENUATION.
|
DIRECTION_POWER
The DIRECTION_POWER.
|
ELASTICITY
The ELASTICITY.
|
FLOW_POWER
The FLOW_POWER.
|
FLOW_VARIANCE
The FLOW_VARIANCE.
|
FLOW_VELOCITY
The FLOW_VELOCITY.
|
PERFUSION
The FLOW_VELOCITY.
|
SOUND_SPEED
The SOUND_SPEED.
|
TISSUE_INTENSITY
The TISSUE_INTENSITY.
|
TISSUE_VELOCITY
The TISSUE_VELOCITY.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDataType TISSUE_INTENSITY
public static final EnumDataType TISSUE_VELOCITY
public static final EnumDataType FLOW_POWER
public static final EnumDataType DIRECTION_POWER
public static final EnumDataType FLOW_VARIANCE
public static final EnumDataType ELASTICITY
public static final EnumDataType FLOW_VELOCITY
public static final EnumDataType PERFUSION
public static final EnumDataType SOUND_SPEED
public static final EnumDataType ATTENUATION
public static EnumDataType[] values()
for (EnumDataType c : EnumDataType.values()) System.out.println(c);
public static EnumDataType 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()