public static enum Stoichiometry.StringOverflowStrategy extends Enum<Stoichiometry.StringOverflowStrategy>
SubunitCluster
exceeds the length of the alphabet.Enum Constant and Description |
---|
CUSTOM
The strategy is defined via an external function, we do not have to do anything.
|
CYCLE
Cycle through the alphabet (e.g., ...xyzABC...)
|
DOUBLE
Represent every cluster with two symbols from the alphabet,
this forces us to specify number of subunits for every subunit (e.g., AA1AB1AC1...).
|
QUESTIONMARK
Put '?'
|
Modifier and Type | Method and Description |
---|---|
static Stoichiometry.StringOverflowStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stoichiometry.StringOverflowStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stoichiometry.StringOverflowStrategy QUESTIONMARK
public static final Stoichiometry.StringOverflowStrategy CYCLE
public static final Stoichiometry.StringOverflowStrategy DOUBLE
public static final Stoichiometry.StringOverflowStrategy CUSTOM
public static Stoichiometry.StringOverflowStrategy[] values()
for (Stoichiometry.StringOverflowStrategy c : Stoichiometry.StringOverflowStrategy.values()) System.out.println(c);
public static Stoichiometry.StringOverflowStrategy 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 © 2000–2019 BioJava. All rights reserved.