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