Package net.sf.jniinchi
Enum INCHI_OPTION
- java.lang.Object
-
- java.lang.Enum<INCHI_OPTION>
-
- net.sf.jniinchi.INCHI_OPTION
-
- All Implemented Interfaces:
Serializable
,Comparable<INCHI_OPTION>
public enum INCHI_OPTION extends Enum<INCHI_OPTION>
This class provides backwards compatibility of JNA-INCHI with JNI-INCHI, this enum was exposed in the CDK API.- Author:
- John Mayfield
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static INCHI_OPTION
valueOf(String name)
Returns the enum constant of this type with the specified name.static INCHI_OPTION[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCF
public static final INCHI_OPTION SUCF
-
ChiralFlagON
public static final INCHI_OPTION ChiralFlagON
-
ChiralFlagOFF
public static final INCHI_OPTION ChiralFlagOFF
-
SNon
public static final INCHI_OPTION SNon
-
SAbs
public static final INCHI_OPTION SAbs
-
SRel
public static final INCHI_OPTION SRel
-
SRac
public static final INCHI_OPTION SRac
-
SUU
public static final INCHI_OPTION SUU
-
NEWPS
public static final INCHI_OPTION NEWPS
-
RecMet
public static final INCHI_OPTION RecMet
-
FixedH
public static final INCHI_OPTION FixedH
-
AuxNone
public static final INCHI_OPTION AuxNone
-
NoADP
public static final INCHI_OPTION NoADP
-
Compress
public static final INCHI_OPTION Compress
-
DoNotAddH
public static final INCHI_OPTION DoNotAddH
-
Wnumber
public static final INCHI_OPTION Wnumber
-
OutputSDF
public static final INCHI_OPTION OutputSDF
-
WarnOnEmptyStructure
public static final INCHI_OPTION WarnOnEmptyStructure
-
FixSp3Bug
public static final INCHI_OPTION FixSp3Bug
-
FB
public static final INCHI_OPTION FB
-
SPXYZ
public static final INCHI_OPTION SPXYZ
-
SAsXYZ
public static final INCHI_OPTION SAsXYZ
-
-
Method Detail
-
values
public static INCHI_OPTION[] 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 (INCHI_OPTION c : INCHI_OPTION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static INCHI_OPTION 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
-
-