Package chemaxon.marvin.io.image
Enum ImageExportParamConstants.chiralValues
- java.lang.Object
-
- java.lang.Enum<ImageExportParamConstants.chiralValues>
-
- chemaxon.marvin.io.image.ImageExportParamConstants.chiralValues
-
- All Implemented Interfaces:
Serializable
,Comparable<ImageExportParamConstants.chiralValues>
- Enclosing class:
- ImageExportParamConstants
public static enum ImageExportParamConstants.chiralValues extends Enum<ImageExportParamConstants.chiralValues>
enumerates valid chiral setting values.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description chiral_all
chiral_allPossible
chiral_off
chiral_selected
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageExportParamConstants.chiralValues
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImageExportParamConstants.chiralValues[]
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 ImageExportParamConstants.chiralValues chiral_off
-
chiral_selected
public static final ImageExportParamConstants.chiralValues chiral_selected
-
chiral_all
public static final ImageExportParamConstants.chiralValues chiral_all
-
chiral_allPossible
public static final ImageExportParamConstants.chiralValues chiral_allPossible
-
-
Method Detail
-
values
public static ImageExportParamConstants.chiralValues[] 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 (ImageExportParamConstants.chiralValues c : ImageExportParamConstants.chiralValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageExportParamConstants.chiralValues 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
-
-