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 ElementElement. 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 voidElementTable. decrement(Element element)Decrements the current count for element by one.voidElementTable. decrementBy(Element element, Integer decrement)Decrement the count of the provided element by the given number.DoubleElementTable. getMass(Element element)Returns the individual total mass for the provided element.voidElementTable. increment(Element element)Increment the count of the provided element by one.voidElementTable. incrementBy(Element element, Integer increment)Increment the count of the provided element by the given number.voidElementTable. 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)
-