public static enum Mapper.MappingStyle extends Enum<Mapper.MappingStyle>
Mapper| Enum Constant and Description |
|---|
CHANGING
Only reaction center will be mapped
|
COMPLETE
All atoms will be mapped
|
MATCHING
Only matching atoms will be mapped
|
| Modifier and Type | Method and Description |
|---|---|
static Mapper.MappingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mapper.MappingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mapper.MappingStyle COMPLETE
public static final Mapper.MappingStyle MATCHING
public static final Mapper.MappingStyle CHANGING
public static Mapper.MappingStyle[] values()
for (Mapper.MappingStyle c : Mapper.MappingStyle.values()) System.out.println(c);
public static Mapper.MappingStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null