public enum FileType extends Enum<FileType>
Enum Constant and Description |
---|
CSV_CHROMATOF
Peak table and MS export format used by LECO's ChromaTOF software for GC, GC-MS and GCxGC-MS
instruments.
|
MZ5
mz5 format, based on HDF5.
|
MZDATA
mzData format, now deprecated in favor of mzML.
|
MZDB
mzDB format.
|
MZML
mzML format.
|
MZTAB
mzTab format.
|
MZXML
mzXML format, now deprecated in favor of mzML.
|
NETCDF
NetCDF (ANDI-MS) format, commonly used for GC-MS data.
|
THERMO_RAW
Native RAW format of Thermo Fisher Scientific MS instruments.
|
UNKNOWN
Unknown or unsupported format.
|
WATERS_RAW
Native RAW format of Waters MS instruments.
|
Modifier and Type | Method and Description |
---|---|
static FileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileType MZML
public static final FileType MZ5
public static final FileType MZDB
public static final FileType MZXML
public static final FileType MZDATA
public static final FileType NETCDF
public static final FileType THERMO_RAW
public static final FileType WATERS_RAW
public static final FileType MZTAB
public static final FileType CSV_CHROMATOF
public static final FileType UNKNOWN
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType 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 © 2019. All rights reserved.