Enum ProteoWizardFilter
java.lang.Object
java.lang.Enum<ProteoWizardFilter>
com.compomics.util.experiment.mass_spectrometry.proteowizard.ProteoWizardFilter
- All Implemented Interfaces:
Serializable
,Comparable<ProteoWizardFilter>
,java.lang.constant.Constable
public enum ProteoWizardFilter extends Enum<ProteoWizardFilter>
Filters which can be applied to msconvert.
- Author:
- Marc Vaudel
-
Nested Class Summary
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description String
description
A brief description of the filter.String
name
The name of the filter.int
number
The index of the filter. -
Method Summary
Modifier and Type Method Description static ProteoWizardFilter
getFilter(Integer number)
Returns the filter designed by the given number.static ProteoWizardFilter
getFilter(String name)
Returns the filter designed by the given name.static ProteoWizardFilter
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProteoWizardFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
peakPicking
-
index
-
msLevel
-
chargeState
-
precursorRecalculation
-
precursorRefine
-
scanNumber
-
scanEvent
-
scanTime
-
scanSumming
-
sortByScanType
-
stripIT
-
metaDataFixer
-
titleMaker
-
threshold
-
mzWindow
-
mzPrecursors
-
defaultArrayLength
-
zeroSamples
-
mzPresent
-
MS2Denoise
-
MS2Deisotope
-
turbocharger
-
ETDFilter
-
chargeStatePredictor
-
activation
-
analyzer
-
polarity
-
-
Field Details
-
number
public final int numberThe index of the filter. -
name
The name of the filter. -
description
A brief description of the filter.
-
-
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
-
getFilter
Returns the filter designed by the given number. Null if not found.- Parameters:
number
- the filter number- Returns:
- the filter designed by the given number
-
getFilter
Returns the filter designed by the given name. Null if not found.- Parameters:
name
- the name of the filter- Returns:
- the filter designed by the given number
-