Package chemaxon.standardizer.actions
Enum SetHydrogenIsotopeSymbolAction.Type
- java.lang.Object
-
- java.lang.Enum<SetHydrogenIsotopeSymbolAction.Type>
-
- chemaxon.standardizer.actions.SetHydrogenIsotopeSymbolAction.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<SetHydrogenIsotopeSymbolAction.Type>
- Enclosing class:
- SetHydrogenIsotopeSymbolAction
public static enum SetHydrogenIsotopeSymbolAction.Type extends Enum<SetHydrogenIsotopeSymbolAction.Type>
Hydrogen isotope representation type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ISOTOPE_2H3H
2H/3H isotope symbolISOTOPE_DT
D/T isotope symbol
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SetHydrogenIsotopeSymbolAction.Type
parse(String type)
Parses the hydrogen isotope representation typeString
toString()
static SetHydrogenIsotopeSymbolAction.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static SetHydrogenIsotopeSymbolAction.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ISOTOPE_DT
public static final SetHydrogenIsotopeSymbolAction.Type ISOTOPE_DT
D/T isotope symbol
-
ISOTOPE_2H3H
public static final SetHydrogenIsotopeSymbolAction.Type ISOTOPE_2H3H
2H/3H isotope symbol
-
-
Method Detail
-
values
public static SetHydrogenIsotopeSymbolAction.Type[] 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 (SetHydrogenIsotopeSymbolAction.Type c : SetHydrogenIsotopeSymbolAction.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SetHydrogenIsotopeSymbolAction.Type 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<SetHydrogenIsotopeSymbolAction.Type>
-
parse
public static SetHydrogenIsotopeSymbolAction.Type parse(String type)
Parses the hydrogen isotope representation type- Parameters:
type
- the string representation of the hydrogen isotope representation type- Returns:
- the type of the convert hydrogen isotopes action
-
-