Enum LipidCategory

  • All Implemented Interfaces:
    Serializable, Comparable<LipidCategory>

    public enum LipidCategory
    extends Enum<LipidCategory>
    The lipid category nomenclature follows the shorthand notation of
    Liebisch, 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 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 name
        NullPointerException - if the argument is null