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