Package chemaxon.marvin.calculations
Enum Class ElementalAnalyserPlugin.ResultType
java.lang.Object
java.lang.Enum<ElementalAnalyserPlugin.ResultType>
chemaxon.marvin.calculations.ElementalAnalyserPlugin.ResultType
- All Implemented Interfaces:
Serializable
,Comparable<ElementalAnalyserPlugin.ResultType>
,java.lang.constant.Constable
- Enclosing class:
- ElementalAnalyserPlugin
public static enum ElementalAnalyserPlugin.ResultType
extends Enum<ElementalAnalyserPlugin.ResultType>
Represents the different result types of the elemental analyser plugin.
Most methods of the plugin do not use these enum constants directly, only their
string IDs
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionResult type with the string id "atomcount".Result type with the string id "composition".Result type with the string id "dotdisconnectedformalchargeformula".Result type with the string id "dotdisconnectedformula".Result type with the string id "dotdisconnectedisotopeformalchargeformula".Result type with the string id "dotdisconnectedisotopeformula".Result type with the string id "exactmass".Result type with the string id "formalchargeformula".Result type with the string id "formula".Result type with the string id "groupeddotdisconnectedformula".Result type with the string id "isotopecomposition".Result type with the string id "isotopeformalchargeformula".Result type with the string id "isotopeformula".Result type with the string id "mass".Result type with the string id "massspectrum".Result type with the string id "nominalmass". -
Method Summary
Modifier and TypeMethodDescriptionid()
Returns the ID of this result type.toString()
Returns the enum constant of this class with the specified name.static ElementalAnalyserPlugin.ResultType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MASS
Result type with the string id "mass". -
EXACT_MASS
Result type with the string id "exactmass". -
NOMINAL_MASS
Result type with the string id "nominalmass". -
FORMULA
Result type with the string id "formula". -
FORMAL_CHARGE_FORMULA
Result type with the string id "formalchargeformula". -
ISOTOPE_FORMULA
Result type with the string id "isotopeformula". -
ISOTOPE_FORMAL_CHARGE_FORMULA
Result type with the string id "isotopeformalchargeformula". -
DOTDISCONNECTED_FORMULA
Result type with the string id "dotdisconnectedformula". -
DOTDISCONNECTED_FORMAL_CHARGE_FORMULA
Result type with the string id "dotdisconnectedformalchargeformula". -
DOTDISCONNECTED_ISOTOPE_FORMULA
Result type with the string id "dotdisconnectedisotopeformula". -
DOTDISCONNECTED_ISOTOPE_FORMAL_CHARGE_FORMULA
public static final ElementalAnalyserPlugin.ResultType DOTDISCONNECTED_ISOTOPE_FORMAL_CHARGE_FORMULAResult type with the string id "dotdisconnectedisotopeformalchargeformula". -
GROUPED_DOTDISCONNECTED_FORMULA
Result type with the string id "groupeddotdisconnectedformula". -
COMPOSITION
Result type with the string id "composition". -
ISOTOPE_COMPOSITION
Result type with the string id "isotopecomposition". -
MASS_SPECTRUM
Result type with the string id "massspectrum". -
ATOM_COUNT
Result type with the string id "atomcount".
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
id
Returns the ID of this result type. -
toString
- Overrides:
toString
in classEnum<ElementalAnalyserPlugin.ResultType>
-