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