Package de.isas.mztab2.test.utils
Enum ClassPathFile
- java.lang.Object
-
- java.lang.Enum<ClassPathFile>
-
- de.isas.mztab2.test.utils.ClassPathFile
-
- All Implemented Interfaces:
Serializable
,Comparable<ClassPathFile>
public enum ClassPathFile extends Enum<ClassPathFile>
Test files enum to configure test files.- Author:
- nilshoffmann
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
fileName()
String
resourcePath()
static ClassPathFile
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClassPathFile[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MTDFILE
public static final ClassPathFile MTDFILE
-
MTBLS263
public static final ClassPathFile MTBLS263
-
MOUSELIVER_NEGATIVE
public static final ClassPathFile MOUSELIVER_NEGATIVE
-
MOUSELIVER_NEGATIVE_MZTAB_NULL_COLUNIT
public static final ClassPathFile MOUSELIVER_NEGATIVE_MZTAB_NULL_COLUNIT
-
STANDARDMIX_NEGATIVE_EXPORTPOSITIONLEVEL
public static final ClassPathFile STANDARDMIX_NEGATIVE_EXPORTPOSITIONLEVEL
-
STANDARDMIX_NEGATIVE_EXPORTSPECIESLEVEL
public static final ClassPathFile STANDARDMIX_NEGATIVE_EXPORTSPECIESLEVEL
-
STANDARDMIX_POSITIVE_EXPORTPOSITIONLEVEL
public static final ClassPathFile STANDARDMIX_POSITIVE_EXPORTPOSITIONLEVEL
-
STANDARDMIX_POSITIVE_EXPORTSPECIESLEVEL
public static final ClassPathFile STANDARDMIX_POSITIVE_EXPORTSPECIESLEVEL
-
GCXGC_MS_EXAMPLE
public static final ClassPathFile GCXGC_MS_EXAMPLE
-
LIPIDOMICS_EXAMPLE
public static final ClassPathFile LIPIDOMICS_EXAMPLE
-
LIPIDOMICS_EXAMPLE_WRONG_MSSCAN_REF
public static final ClassPathFile LIPIDOMICS_EXAMPLE_WRONG_MSSCAN_REF
-
MINIMAL_EXAMPLE
public static final ClassPathFile MINIMAL_EXAMPLE
-
-
Method Detail
-
values
public static ClassPathFile[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ClassPathFile c : ClassPathFile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClassPathFile valueOf(String name)
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
-
resourcePath
public String resourcePath()
-
-