Package chemaxon.marvin.io.image
Enum ImageExporter.ChiralityDisplayOption
- java.lang.Object
-
- java.lang.Enum<ImageExporter.ChiralityDisplayOption>
-
- chemaxon.marvin.io.image.ImageExporter.ChiralityDisplayOption
-
- All Implemented Interfaces:
Serializable
,Comparable<ImageExporter.ChiralityDisplayOption>
- Enclosing class:
- ImageExporter
public static enum ImageExporter.ChiralityDisplayOption extends Enum<ImageExporter.ChiralityDisplayOption>
Display option for chirality.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHIRAL_ALL
CHIRAL_ALL_POSSIBLE
CHIRAL_OFF
CHIRAL_SELECTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static ImageExporter.ChiralityDisplayOption
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImageExporter.ChiralityDisplayOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHIRAL_OFF
public static final ImageExporter.ChiralityDisplayOption CHIRAL_OFF
-
CHIRAL_SELECTED
public static final ImageExporter.ChiralityDisplayOption CHIRAL_SELECTED
-
CHIRAL_ALL
public static final ImageExporter.ChiralityDisplayOption CHIRAL_ALL
-
CHIRAL_ALL_POSSIBLE
public static final ImageExporter.ChiralityDisplayOption CHIRAL_ALL_POSSIBLE
-
-
Method Detail
-
values
public static ImageExporter.ChiralityDisplayOption[] 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 (ImageExporter.ChiralityDisplayOption c : ImageExporter.ChiralityDisplayOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageExporter.ChiralityDisplayOption 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<ImageExporter.ChiralityDisplayOption>
-
-