Package org.biojava.nbio.aaproperties
Enum PeptideProperties.SingleLetterAACode
- java.lang.Object
-
- java.lang.Enum<PeptideProperties.SingleLetterAACode>
-
- org.biojava.nbio.aaproperties.PeptideProperties.SingleLetterAACode
-
- All Implemented Interfaces:
Serializable
,Comparable<PeptideProperties.SingleLetterAACode>
- Enclosing class:
- PeptideProperties
public static enum PeptideProperties.SingleLetterAACode extends Enum<PeptideProperties.SingleLetterAACode>
Enumeration of 20 standard amino acid code
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PeptideProperties.SingleLetterAACode
valueOf(String name)
Returns the enum constant of this type with the specified name.static PeptideProperties.SingleLetterAACode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
W
public static final PeptideProperties.SingleLetterAACode W
-
C
public static final PeptideProperties.SingleLetterAACode C
-
M
public static final PeptideProperties.SingleLetterAACode M
-
H
public static final PeptideProperties.SingleLetterAACode H
-
Y
public static final PeptideProperties.SingleLetterAACode Y
-
F
public static final PeptideProperties.SingleLetterAACode F
-
Q
public static final PeptideProperties.SingleLetterAACode Q
-
N
public static final PeptideProperties.SingleLetterAACode N
-
I
public static final PeptideProperties.SingleLetterAACode I
-
R
public static final PeptideProperties.SingleLetterAACode R
-
D
public static final PeptideProperties.SingleLetterAACode D
-
P
public static final PeptideProperties.SingleLetterAACode P
-
T
public static final PeptideProperties.SingleLetterAACode T
-
K
public static final PeptideProperties.SingleLetterAACode K
-
E
public static final PeptideProperties.SingleLetterAACode E
-
V
public static final PeptideProperties.SingleLetterAACode V
-
S
public static final PeptideProperties.SingleLetterAACode S
-
G
public static final PeptideProperties.SingleLetterAACode G
-
A
public static final PeptideProperties.SingleLetterAACode A
-
L
public static final PeptideProperties.SingleLetterAACode L
-
-
Method Detail
-
values
public static PeptideProperties.SingleLetterAACode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PeptideProperties.SingleLetterAACode c : PeptideProperties.SingleLetterAACode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PeptideProperties.SingleLetterAACode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-