Package de.isas.lipidomics.domain
Enum FattyAcidType
- java.lang.Object
-
- java.lang.Enum<FattyAcidType>
-
- de.isas.lipidomics.domain.FattyAcidType
-
- All Implemented Interfaces:
Serializable
,Comparable<FattyAcidType>
public enum FattyAcidType extends Enum<FattyAcidType>
The type of a fatty acid, reflecting the structural properties following the Liebisch hierarchy.- Author:
- nils.hoffmann
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ISOMERIC
MOLECULAR
STRUCTURAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FattyAcidType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FattyAcidType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MOLECULAR
public static final FattyAcidType MOLECULAR
-
STRUCTURAL
public static final FattyAcidType STRUCTURAL
-
ISOMERIC
public static final FattyAcidType ISOMERIC
-
-
Method Detail
-
values
public static FattyAcidType[] 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 (FattyAcidType c : FattyAcidType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FattyAcidType 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
-
-