public static enum Mutation.Mutator extends Enum<Mutation.Mutator>
| Enum Constant and Description |
|---|
DELETE |
DIFFERENCE |
INSERT |
PRODUCT |
QUOTIENT |
REMAINDER |
SUM |
| Modifier and Type | Method and Description |
|---|---|
String |
mutator()
Returns the mutator for Mutator.
|
static Mutation.Mutator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mutation.Mutator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mutation.Mutator SUM
public static final Mutation.Mutator DIFFERENCE
public static final Mutation.Mutator PRODUCT
public static final Mutation.Mutator QUOTIENT
public static final Mutation.Mutator REMAINDER
public static final Mutation.Mutator INSERT
public static final Mutation.Mutator DELETE
public static Mutation.Mutator[] values()
for (Mutation.Mutator c : Mutation.Mutator.values()) System.out.println(c);
public static Mutation.Mutator 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 mutator()