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