public enum Advocate extends Enum<Advocate>
Enum Constant and Description |
---|
andromeda
The search engine Andromeda.
|
Mascot
The search engine Mascot.
|
msAmanda
The search engine MS-Amanda.
|
OMSSA
The search engine OMSSA.
|
pepnovo
The de novo algorithm PepNovo.
|
PeptideShaker
The post processing tool PeptideShaker.
|
XTandem
The search engine X!Tandem.
|
Modifier and Type | Method and Description |
---|---|
static Advocate |
getAdvocate(int index)
Returns the advocate corresponding to the given index.
|
int |
getIndex()
Returns the index of the advocate.
|
String |
getName()
Returns the name of the advocate.
|
static Advocate[] |
getPossibilities()
Returns the implemented advocates.
|
static Advocate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Advocate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Advocate Mascot
public static final Advocate OMSSA
public static final Advocate XTandem
public static final Advocate pepnovo
public static final Advocate andromeda
public static final Advocate msAmanda
public static final Advocate PeptideShaker
public static Advocate[] values()
for (Advocate c : Advocate.values()) System.out.println(c);
public static Advocate 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 int getIndex()
public String getName()
public static Advocate[] getPossibilities()
public static Advocate getAdvocate(int index)
index
- the index of the advocateCopyright © 2014. All rights reserved.