public static enum Taints.Effect extends Enum<Taints.Effect>
Enum Constant and Description |
---|
NO_EXECUTE |
NO_SCHEDULE |
PREFER_NO_SCHEDULE |
Modifier and Type | Method and Description |
---|---|
static Taints.Effect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Taints.Effect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Taints.Effect NO_SCHEDULE
public static final Taints.Effect PREFER_NO_SCHEDULE
public static final Taints.Effect NO_EXECUTE
public static Taints.Effect[] values()
for (Taints.Effect c : Taints.Effect.values()) System.out.println(c);
public static Taints.Effect 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.