Package de.isas.mztab2.model
Enum Metadata.Properties
- java.lang.Object
-
- java.lang.Enum<Metadata.Properties>
-
- de.isas.mztab2.model.Metadata.Properties
-
- All Implemented Interfaces:
Serializable
,Comparable<Metadata.Properties>
- Enclosing class:
- Metadata
public static enum Metadata.Properties extends Enum<Metadata.Properties>
Property enumeration for Metadata.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPropertyName()
static Metadata.Properties
of(String value)
String
toString()
String
toUpper()
static Metadata.Properties
valueOf(String name)
Returns the enum constant of this type with the specified name.static Metadata.Properties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
prefix
public static final Metadata.Properties prefix
-
mzTabVersion
public static final Metadata.Properties mzTabVersion
-
mzTabID
public static final Metadata.Properties mzTabID
-
title
public static final Metadata.Properties title
-
description
public static final Metadata.Properties description
-
contact
public static final Metadata.Properties contact
-
publication
public static final Metadata.Properties publication
-
uri
public static final Metadata.Properties uri
-
externalStudyUri
public static final Metadata.Properties externalStudyUri
-
instrument
public static final Metadata.Properties instrument
-
quantificationMethod
public static final Metadata.Properties quantificationMethod
-
sample
public static final Metadata.Properties sample
-
sampleProcessing
public static final Metadata.Properties sampleProcessing
-
software
public static final Metadata.Properties software
-
derivatizationAgent
public static final Metadata.Properties derivatizationAgent
-
msRun
public static final Metadata.Properties msRun
-
assay
public static final Metadata.Properties assay
-
studyVariable
public static final Metadata.Properties studyVariable
-
custom
public static final Metadata.Properties custom
-
cv
public static final Metadata.Properties cv
-
smallMoleculeQuantificationUnit
public static final Metadata.Properties smallMoleculeQuantificationUnit
-
smallMoleculeFeatureQuantificationUnit
public static final Metadata.Properties smallMoleculeFeatureQuantificationUnit
-
smallMoleculeIdentificationReliability
public static final Metadata.Properties smallMoleculeIdentificationReliability
-
database
public static final Metadata.Properties database
-
idConfidenceMeasure
public static final Metadata.Properties idConfidenceMeasure
-
colunitSmallMolecule
public static final Metadata.Properties colunitSmallMolecule
-
colunitSmallMoleculeFeature
public static final Metadata.Properties colunitSmallMoleculeFeature
-
colunitSmallMoleculeEvidence
public static final Metadata.Properties colunitSmallMoleculeEvidence
-
-
Method Detail
-
values
public static Metadata.Properties[] 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 (Metadata.Properties c : Metadata.Properties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Metadata.Properties 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
-
getPropertyName
public String getPropertyName()
-
toString
public String toString()
- Overrides:
toString
in classEnum<Metadata.Properties>
-
of
public static Metadata.Properties of(String value)
-
-