Uses of Class
de.isas.lipidomics.domain.Element
-
Packages that use Element Package Description de.isas.lipidomics.domain This package contains the main common domain models for lipids. -
-
Uses of Element in de.isas.lipidomics.domain
Methods in de.isas.lipidomics.domain that return Element Modifier and Type Method Description static Element
Element. valueOf(String name)
Returns the enum constant of this type with the specified name.static Element[]
Element. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.isas.lipidomics.domain that return types with arguments of type Element Modifier and Type Method Description static Optional<Element>
Element. forName(String name)
Tries to find the corresponding element by name, e.g.Methods in de.isas.lipidomics.domain with parameters of type Element Modifier and Type Method Description void
ElementTable. decrement(Element element)
Decrements the current count for element by one.void
ElementTable. decrementBy(Element element, Integer decrement)
Decrement the count of the provided element by the given number.Double
ElementTable. getMass(Element element)
Returns the individual total mass for the provided element.void
ElementTable. increment(Element element)
Increment the count of the provided element by one.void
ElementTable. incrementBy(Element element, Integer increment)
Increment the count of the provided element by the given number.void
ElementTable. negate(Element element)
Negates the count stored in the table.Constructor parameters in de.isas.lipidomics.domain with type arguments of type Element Constructor Description ElementTable(Map<Element,? extends Integer> m)
-