public enum EnumROIGenerationAlgorithm extends java.lang.Enum<EnumROIGenerationAlgorithm>
| Enum Constant and Description |
|---|
ROI_CALCULATED
The RO i_ calculated.
|
ROI_CALCULATED_USER_ASSITANCE
The RO i_ calculate d_ use r_ assitance.
|
ROI_USER_ENTERED
The RO i_ use r_ entered.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumROIGenerationAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumROIGenerationAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumROIGenerationAlgorithm ROI_CALCULATED
public static final EnumROIGenerationAlgorithm ROI_CALCULATED_USER_ASSITANCE
public static final EnumROIGenerationAlgorithm ROI_USER_ENTERED
public static EnumROIGenerationAlgorithm[] values()
for (EnumROIGenerationAlgorithm c : EnumROIGenerationAlgorithm.values()) System.out.println(c);
public static EnumROIGenerationAlgorithm 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()