public enum PeptideFragmentationModel extends Enum<PeptideFragmentationModel>
Modifier and Type | Field and Description |
---|---|
String |
description
The description of the option.
|
int |
index
The index of the option.
|
String |
name
The name of the option.
|
Modifier and Type | Method and Description |
---|---|
static PeptideFragmentationModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeptideFragmentationModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeptideFragmentationModel uniform
public static final PeptideFragmentationModel sequest
public final int index
public final String name
public final String description
public static PeptideFragmentationModel[] values()
for (PeptideFragmentationModel c : PeptideFragmentationModel.values()) System.out.println(c);
public static PeptideFragmentationModel 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 © 2018. All rights reserved.