public static enum BasicMutateModule.PermutationType extends java.lang.Enum<BasicMutateModule.PermutationType>
Mutate
operator for the PermutationGenotype
.Enum Constant and Description |
---|
INSERT
Use the
MutatePermutationInsert . |
MIXED
Use the
MutatePermutationMixed . |
REVERT
Use the
MutatePermutationRevert . |
SWAP
Use the
MutatePermutationSwap . |
Modifier and Type | Method and Description |
---|---|
static BasicMutateModule.PermutationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasicMutateModule.PermutationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicMutateModule.PermutationType MIXED
MutatePermutationMixed
.public static final BasicMutateModule.PermutationType SWAP
MutatePermutationSwap
.public static final BasicMutateModule.PermutationType INSERT
MutatePermutationInsert
.public static final BasicMutateModule.PermutationType REVERT
MutatePermutationRevert
.public static BasicMutateModule.PermutationType[] values()
for (BasicMutateModule.PermutationType c : BasicMutateModule.PermutationType.values()) System.out.println(c);
public static BasicMutateModule.PermutationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null