Package de.isas.lipidomics.domain
Enum LipidCategory
- java.lang.Object
-
- java.lang.Enum<LipidCategory>
-
- de.isas.lipidomics.domain.LipidCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<LipidCategory>
public enum LipidCategory extends Enum<LipidCategory>
The lipid category nomenclature follows the shorthand notation ofLiebisch, G., Vizcaíno, J.A., Köfeler, H., Trötzmüller, M., Griffiths, W.J., Schmitz, G., Spener, F., and Wakelam, M.J.O. (2013). Shorthand notation for lipid structures derived from mass spectrometry. J. Lipid Res. 54, 1523–1530.
We use the associations to either LipidMAPS or SwissLipids (Saccharolipids), where appropriate. Example: Category=Glyerophospholipids (GP)- Author:
- nils.hoffmann
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LipidCategory
forFullName(String fullName)
String
getFullName()
static LipidCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static LipidCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final LipidCategory UNDEFINED
-
GL
public static final LipidCategory GL
-
GP
public static final LipidCategory GP
-
SP
public static final LipidCategory SP
-
ST
public static final LipidCategory ST
-
FA
public static final LipidCategory FA
-
SL
public static final LipidCategory SL
-
PK
public static final LipidCategory PK
-
-
Method Detail
-
values
public static LipidCategory[] 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 (LipidCategory c : LipidCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LipidCategory 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
-
getFullName
public String getFullName()
-
forFullName
public static LipidCategory forFullName(String fullName)
-
-