public enum MutationType extends Enum<MutationType>
| Enum Constant and Description |
|---|
Deletion |
Insertion |
Substitution |
| Modifier and Type | Field and Description |
|---|---|
int |
rawType |
| Modifier and Type | Method and Description |
|---|---|
static MutationType |
getType(int type)
|
static MutationType |
getTypeFromRaw(int rawType) |
static MutationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutationType Substitution
public static final MutationType Deletion
public static final MutationType Insertion
public static MutationType[] values()
for (MutationType c : MutationType.values()) System.out.println(c);
public static MutationType 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 static MutationType getTypeFromRaw(int rawType)
public static MutationType getType(int type)
type - int typeSubstitution for 0, Deletion for 1 and Insertion for 2.Copyright © 2018. All rights reserved.