Package chemaxon.standardizer.actions
Enum ConvertDoubleBondsAction.Type
- java.lang.Object
-
- java.lang.Enum<ConvertDoubleBondsAction.Type>
-
- chemaxon.standardizer.actions.ConvertDoubleBondsAction.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<ConvertDoubleBondsAction.Type>
- Enclosing class:
- ConvertDoubleBondsAction
public static enum ConvertDoubleBondsAction.Type extends Enum<ConvertDoubleBondsAction.Type>
Type of conversion
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConvertDoubleBondsAction.Type
parse(String type)
Parses the type of the convert double bonds actionString
toString()
static ConvertDoubleBondsAction.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConvertDoubleBondsAction.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CROSSED
public static final ConvertDoubleBondsAction.Type CROSSED
Crossed double bond type
-
WIGGLY
public static final ConvertDoubleBondsAction.Type WIGGLY
Wiggly double bond type
-
-
Method Detail
-
values
public static ConvertDoubleBondsAction.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 (ConvertDoubleBondsAction.Type c : ConvertDoubleBondsAction.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 ConvertDoubleBondsAction.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<ConvertDoubleBondsAction.Type>
-
parse
public static ConvertDoubleBondsAction.Type parse(String type)
Parses the type of the convert double bonds action- Parameters:
type
- the string representation of the type to be parsed- Returns:
- the type of the convert double bonds action
-
-