public enum TreatmentStepOperation extends Enum<TreatmentStepOperation>
Modifier and Type | Method and Description |
---|---|
void |
apply(TreatmentStep ts)
Apply this operation to a treatment step.
|
String |
getDisplayName()
Return this operation's human-readable name
|
static TreatmentStepOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreatmentStepOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreatmentStepOperation SELECT
public static final TreatmentStepOperation DESELECT
public static final TreatmentStepOperation HIDE
public static final TreatmentStepOperation UNHIDE
public static TreatmentStepOperation[] values()
for (TreatmentStepOperation c : TreatmentStepOperation.values()) System.out.println(c);
public static TreatmentStepOperation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getDisplayName()
public void apply(TreatmentStep ts)
ts
- the treatment step to which to apply this operationCopyright © 2022. All rights reserved.