public static enum AromatizeAction.Type extends java.lang.Enum<AromatizeAction.Type>
Enum Constant and Description |
---|
BASIC
Basic aromatization
|
GENERAL
General aromatization
|
LOOSE
Loose aromatization
|
Modifier and Type | Method and Description |
---|---|
int |
getCode()
Gets the
MoleculeGraph constant value of the aromatization |
static AromatizeAction.Type |
parse(java.lang.String type)
Parses the type of the aromatize action
|
java.lang.String |
toString() |
static AromatizeAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AromatizeAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AromatizeAction.Type BASIC
public static final AromatizeAction.Type GENERAL
public static final AromatizeAction.Type LOOSE
public static AromatizeAction.Type[] values()
for (AromatizeAction.Type c : AromatizeAction.Type.values()) System.out.println(c);
public static AromatizeAction.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getCode()
MoleculeGraph
constant value of the aromatizationMoleculeGraph
constant value of the aromatizationpublic java.lang.String toString()
toString
in class java.lang.Enum<AromatizeAction.Type>
public static AromatizeAction.Type parse(java.lang.String type)
type
- the string representation of the type to be parsed