public static enum StrandDiffSM.InitMethod extends Enum<StrandDiffSM.InitMethod>
StrandDiffSM.| Enum Constant and Description |
|---|
INIT_BACKWARD_STRAND
This value indicates that the model is initialized with the data on the backward strand.
|
INIT_BOTH_STRANDS
This value indicates that the model is initialized with the data, where the weight for both strand of each sequence is chosen randomly.
|
INIT_FORWARD_STRAND
This value indicates that the model is initialized with the data on the forward strand.
|
| Modifier and Type | Method and Description |
|---|---|
static StrandDiffSM.InitMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StrandDiffSM.InitMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StrandDiffSM.InitMethod INIT_FORWARD_STRAND
public static final StrandDiffSM.InitMethod INIT_BACKWARD_STRAND
public static final StrandDiffSM.InitMethod INIT_BOTH_STRANDS
public static StrandDiffSM.InitMethod[] values()
for (StrandDiffSM.InitMethod c : StrandDiffSM.InitMethod.values()) System.out.println(c);
public static StrandDiffSM.InitMethod 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 null