public enum ModificationType extends Enum<ModificationType>
Enum Constant and Description |
---|
modaa
Modification at particular amino acids.
|
modc_peptide
Modification at the C-terminus of a peptide.
|
modc_protein
Modification at the C-terminus of a protein.
|
modcaa_peptide
Modification at the C-terminus of a peptide at particular amino acids.
|
modcaa_protein
Modification at the C-terminus of a protein at particular amino acids.
|
modn_peptide
Modification at the N-terminus of a peptide.
|
modn_protein
Modification at the N-terminus of a protein.
|
modnaa_peptide
Modification at the N-terminus of a peptide at particular amino acids.
|
modnaa_protein
Modification at the N-terminus of a protein at particular amino acids.
|
Modifier and Type | Field and Description |
---|---|
String |
description
The description of the type.
|
int |
index
The index of the type, must be the index in the values array.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isCTerm()
Returns a boolean indicating whether the modification type targets the C-terminus of a protein or of a peptide.
|
boolean |
isNTerm()
Returns a boolean indicating whether the modification type targets the N-terminus of a protein or of a peptide.
|
static ModificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationType modaa
public static final ModificationType modn_protein
public static final ModificationType modnaa_protein
public static final ModificationType modc_protein
public static final ModificationType modcaa_protein
public static final ModificationType modn_peptide
public static final ModificationType modnaa_peptide
public static final ModificationType modc_peptide
public static final ModificationType modcaa_peptide
public final int index
public final String description
public static ModificationType[] values()
for (ModificationType c : ModificationType.values()) System.out.println(c);
public static ModificationType 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 nullpublic boolean isNTerm()
public boolean isCTerm()
Copyright © 2018. All rights reserved.