public static enum SequenceMatchingPreferences.MatchingType extends Enum<SequenceMatchingPreferences.MatchingType>
Enum Constant and Description |
---|
aminoAcid
Matches amino acids.
|
indistiguishableAminoAcids
Matches amino acids of indistinguishable masses.
|
string
Matches character strings only.
|
Modifier and Type | Method and Description |
---|---|
static SequenceMatchingPreferences.MatchingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceMatchingPreferences.MatchingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceMatchingPreferences.MatchingType string
public static final SequenceMatchingPreferences.MatchingType aminoAcid
public static final SequenceMatchingPreferences.MatchingType indistiguishableAminoAcids
public static SequenceMatchingPreferences.MatchingType[] values()
for (SequenceMatchingPreferences.MatchingType c : SequenceMatchingPreferences.MatchingType.values()) System.out.println(c);
public static SequenceMatchingPreferences.MatchingType 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 © 2015. All rights reserved.