public enum TargetBrightness extends java.lang.Enum<TargetBrightness>
| Enum Constant and Description |
|---|
Bright
< @brief The ROI are darker than the background.
|
Dark |
| Modifier and Type | Method and Description |
|---|---|
static TargetBrightness |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TargetBrightness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetBrightness Dark
public static final TargetBrightness Bright
public static TargetBrightness[] values()
for (TargetBrightness c : TargetBrightness.values()) System.out.println(c);
public static TargetBrightness 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 null