Package chemaxon.marvin.calculations
Enum ElementalAnalyserPlugin.ResultType
- java.lang.Object
-
- java.lang.Enum<ElementalAnalyserPlugin.ResultType>
-
- chemaxon.marvin.calculations.ElementalAnalyserPlugin.ResultType
-
- All Implemented Interfaces:
Serializable
,Comparable<ElementalAnalyserPlugin.ResultType>
- 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 theirstring IDs
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATOM_COUNT
Result type with the string id "atomcount".COMPOSITION
Result type with the string id "composition".DOTDISCONNECTED_FORMAL_CHARGE_FORMULA
Result type with the string id "dotdisconnectedformalchargeformula".DOTDISCONNECTED_FORMULA
Result type with the string id "dotdisconnectedformula".DOTDISCONNECTED_ISOTOPE_FORMAL_CHARGE_FORMULA
Result type with the string id "dotdisconnectedisotopeformalchargeformula".DOTDISCONNECTED_ISOTOPE_FORMULA
Result type with the string id "dotdisconnectedisotopeformula".EXACT_MASS
Result type with the string id "exactmass".FORMAL_CHARGE_FORMULA
Result type with the string id "formalchargeformula".FORMULA
Result type with the string id "formula".GROUPED_DOTDISCONNECTED_FORMULA
Result type with the string id "groupeddotdisconnectedformula".ISOTOPE_COMPOSITION
Result type with the string id "isotopecomposition".ISOTOPE_FORMAL_CHARGE_FORMULA
Result type with the string id "isotopeformalchargeformula".ISOTOPE_FORMULA
Result type with the string id "isotopeformula".MASS
Result type with the string id "mass".MASS_SPECTRUM
Result type with the string id "massspectrum".NOMINAL_MASS
Result type with the string id "nominalmass".
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
id()
Returns the ID of this result type.String
toString()
static ElementalAnalyserPlugin.ResultType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ElementalAnalyserPlugin.ResultType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MASS
public static final ElementalAnalyserPlugin.ResultType MASS
Result type with the string id "mass".
-
EXACT_MASS
public static final ElementalAnalyserPlugin.ResultType EXACT_MASS
Result type with the string id "exactmass".
-
NOMINAL_MASS
public static final ElementalAnalyserPlugin.ResultType NOMINAL_MASS
Result type with the string id "nominalmass".
-
FORMULA
public static final ElementalAnalyserPlugin.ResultType FORMULA
Result type with the string id "formula".
-
FORMAL_CHARGE_FORMULA
public static final ElementalAnalyserPlugin.ResultType FORMAL_CHARGE_FORMULA
Result type with the string id "formalchargeformula".
-
ISOTOPE_FORMULA
public static final ElementalAnalyserPlugin.ResultType ISOTOPE_FORMULA
Result type with the string id "isotopeformula".
-
ISOTOPE_FORMAL_CHARGE_FORMULA
public static final ElementalAnalyserPlugin.ResultType ISOTOPE_FORMAL_CHARGE_FORMULA
Result type with the string id "isotopeformalchargeformula".
-
DOTDISCONNECTED_FORMULA
public static final ElementalAnalyserPlugin.ResultType DOTDISCONNECTED_FORMULA
Result type with the string id "dotdisconnectedformula".
-
DOTDISCONNECTED_FORMAL_CHARGE_FORMULA
public static final ElementalAnalyserPlugin.ResultType DOTDISCONNECTED_FORMAL_CHARGE_FORMULA
Result type with the string id "dotdisconnectedformalchargeformula".
-
DOTDISCONNECTED_ISOTOPE_FORMULA
public static final ElementalAnalyserPlugin.ResultType DOTDISCONNECTED_ISOTOPE_FORMULA
Result type with the string id "dotdisconnectedisotopeformula".
-
DOTDISCONNECTED_ISOTOPE_FORMAL_CHARGE_FORMULA
public static final ElementalAnalyserPlugin.ResultType DOTDISCONNECTED_ISOTOPE_FORMAL_CHARGE_FORMULA
Result type with the string id "dotdisconnectedisotopeformalchargeformula".
-
GROUPED_DOTDISCONNECTED_FORMULA
public static final ElementalAnalyserPlugin.ResultType GROUPED_DOTDISCONNECTED_FORMULA
Result type with the string id "groupeddotdisconnectedformula".
-
COMPOSITION
public static final ElementalAnalyserPlugin.ResultType COMPOSITION
Result type with the string id "composition".
-
ISOTOPE_COMPOSITION
public static final ElementalAnalyserPlugin.ResultType ISOTOPE_COMPOSITION
Result type with the string id "isotopecomposition".
-
MASS_SPECTRUM
public static final ElementalAnalyserPlugin.ResultType MASS_SPECTRUM
Result type with the string id "massspectrum".
-
ATOM_COUNT
public static final ElementalAnalyserPlugin.ResultType ATOM_COUNT
Result type with the string id "atomcount".
-
-
Method Detail
-
values
public static ElementalAnalyserPlugin.ResultType[] 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 (ElementalAnalyserPlugin.ResultType c : ElementalAnalyserPlugin.ResultType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElementalAnalyserPlugin.ResultType 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
-
id
public String id()
Returns the ID of this result type.
-
toString
public String toString()
- Overrides:
toString
in classEnum<ElementalAnalyserPlugin.ResultType>
-
-