Enum ProteoWizardMsFormat
java.lang.Object
java.lang.Enum<ProteoWizardMsFormat>
com.compomics.util.experiment.mass_spectrometry.proteowizard.ProteoWizardMsFormat
- All Implemented Interfaces:
Serializable,Comparable<ProteoWizardMsFormat>,java.lang.constant.Constable
The mass spectrometry formats supported by ProteoWizard.
- Author:
- Marc Vaudel, Harald Barsnes
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBruker BAF format.Binary bms2 format.cms1 format.cms2 format.Agilent/Bruker D format.Bruker FID format.Shimadzu LCD format.Mascot generic format.ms1 format.ms2 format.Implementation of the PSI mzML ontology that is based on HDF5.mzML generic PSI format.mzXML format.Thermo/Waters RAW format.ABI T2D format.Bruker TDF format.Bruker TSF format.Sciex WIFF format.Sciex WIFF2 format.Bruker YEP format. -
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringThe command line option name.final StringA brief description of the format.final StringThe file name ending of the format.final intThe index of the format.final StringThe name of the format.final booleanBoolean indicating if this in a format that can be used as output.final booleanBoolean indicating if this in a format for raw data, false means that it is a peak list format. -
Method Summary
Modifier and TypeMethodDescriptionstatic ProteoWizardMsFormat[]getDataFormats(Boolean raw, Boolean outputFormat) Returns a list of formats.toString()static ProteoWizardMsFormatReturns the enum constant of this type with the specified name.static ProteoWizardMsFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
mgf
Mascot generic format. -
ms1
ms1 format. -
ms2
ms2 format. -
cms1
cms1 format. -
cms2
cms2 format. -
bms2
Binary bms2 format. -
mzML
mzML generic PSI format. -
mzXML
mzXML format. -
mz5
Implementation of the PSI mzML ontology that is based on HDF5. -
raw
Thermo/Waters RAW format. -
d
Agilent/Bruker D format. -
fid
Bruker FID format. -
yep
Bruker YEP format. -
baf
Bruker BAF format. -
tdf
Bruker TDF format. -
tsf
Bruker TSF format. -
wiff
Sciex WIFF format. -
wiff2
Sciex WIFF2 format. -
td2
ABI T2D format. -
lcd
Shimadzu LCD format.
-
-
Field Details
-
index
public final int indexThe index of the format. -
commandLineOption
The command line option name. -
name
The name of the format. -
description
A brief description of the format. -
rawFormat
public final boolean rawFormatBoolean indicating if this in a format for raw data, false means that it is a peak list format. -
fileNameEnding
The file name ending of the format. -
outputFormat
public final boolean outputFormatBoolean indicating if this in a format that can be used as output.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
- Overrides:
toStringin classEnum<ProteoWizardMsFormat>
-
getDataFormats
Returns a list of formats.- Parameters:
raw- get raw formats, null returns bothoutputFormat- get output formats, null return both- Returns:
- the list formats
-