public enum InterventionType extends Enum<InterventionType>
| Enum Constant and Description |
|---|
DO
An intervention (do-operator)
|
NONE
Standard evidence
|
NOT_APPLICABLE
Does not apply.
|
| Modifier and Type | Method and Description |
|---|---|
static InterventionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterventionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterventionType NONE
public static final InterventionType DO
public static final InterventionType NOT_APPLICABLE
public static InterventionType[] values()
for (InterventionType c : InterventionType.values()) System.out.println(c);
public static InterventionType 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 nullCopyright © 2021. All rights reserved.