com.compomics.util.experiment.biology.ions
Enum PeptideFragmentIon.PeptideFragmentIonType

java.lang.Object
  extended by java.lang.Enum<PeptideFragmentIon.PeptideFragmentIonType>
      extended by com.compomics.util.experiment.biology.ions.PeptideFragmentIon.PeptideFragmentIonType
All Implemented Interfaces:
Serializable, Comparable<PeptideFragmentIon.PeptideFragmentIonType>
Enclosing class:
PeptideFragmentIon

public static enum PeptideFragmentIon.PeptideFragmentIonType
extends Enum<PeptideFragmentIon.PeptideFragmentIonType>

An enumerator of the supported fragment ion types.


Enum Constant Summary
A_ION
          This int is the identifier for an a ion.
B_ION
          This int is the identifier for a b ion.
C_ION
          This int is the identifier for a c ion.
IMMONIUM
          This int is the identifier for an immonium ion.
PRECURSOR_ION
          This int is the identifier for an MH ion.
UNKNOWN
          This int is the identifier for an unknown ion.
X_ION
          This int is the identifier for a x ion.
Y_ION
          This int is the identifier for a y ion.
Z_ION
          This int is the identifier for a z ion.
 
Method Summary
static PeptideFragmentIon.PeptideFragmentIonType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PeptideFragmentIon.PeptideFragmentIonType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

A_ION

public static final PeptideFragmentIon.PeptideFragmentIonType A_ION
This int is the identifier for an a ion.


B_ION

public static final PeptideFragmentIon.PeptideFragmentIonType B_ION
This int is the identifier for a b ion.


C_ION

public static final PeptideFragmentIon.PeptideFragmentIonType C_ION
This int is the identifier for a c ion.


X_ION

public static final PeptideFragmentIon.PeptideFragmentIonType X_ION
This int is the identifier for a x ion.


Y_ION

public static final PeptideFragmentIon.PeptideFragmentIonType Y_ION
This int is the identifier for a y ion.


Z_ION

public static final PeptideFragmentIon.PeptideFragmentIonType Z_ION
This int is the identifier for a z ion.


PRECURSOR_ION

public static final PeptideFragmentIon.PeptideFragmentIonType PRECURSOR_ION
This int is the identifier for an MH ion. The number of H is not represented here.


IMMONIUM

public static final PeptideFragmentIon.PeptideFragmentIonType IMMONIUM
This int is the identifier for an immonium ion.


UNKNOWN

public static final PeptideFragmentIon.PeptideFragmentIonType UNKNOWN
This int is the identifier for an unknown ion.

Method Detail

values

public static PeptideFragmentIon.PeptideFragmentIonType[] 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 (PeptideFragmentIon.PeptideFragmentIonType c : PeptideFragmentIon.PeptideFragmentIonType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PeptideFragmentIon.PeptideFragmentIonType 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 name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.