public enum EnumFlowCompensationDirection extends java.lang.Enum<EnumFlowCompensationDirection>
| Enum Constant and Description |
|---|
FREQUENCY
The FREQUENCY.
|
OTHER
The OTHER.
|
PHASE
The PHASE.
|
PHASE_AND_FREQ
The PHASE_AND_FREQ.
|
SLICE_AND_FREQ
The SLICE_AND_FREQ.
|
SLICE_AND_PHASE
The SLICE_AND_PHASE.
|
SLICE_FREQ_PHASE
The SLICE_FREQ_PHASE.
|
SLICE_SELECT
The SLICE_SELECT.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumFlowCompensationDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFlowCompensationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFlowCompensationDirection PHASE
public static final EnumFlowCompensationDirection FREQUENCY
public static final EnumFlowCompensationDirection SLICE_SELECT
public static final EnumFlowCompensationDirection SLICE_AND_FREQ
public static final EnumFlowCompensationDirection SLICE_FREQ_PHASE
public static final EnumFlowCompensationDirection PHASE_AND_FREQ
public static final EnumFlowCompensationDirection SLICE_AND_PHASE
public static final EnumFlowCompensationDirection OTHER
public static EnumFlowCompensationDirection[] values()
for (EnumFlowCompensationDirection c : EnumFlowCompensationDirection.values()) System.out.println(c);
public static EnumFlowCompensationDirection 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()