Package net.sf.jniinchi
Enum INCHI_RET
- java.lang.Object
-
- java.lang.Enum<INCHI_RET>
-
- net.sf.jniinchi.INCHI_RET
-
- All Implemented Interfaces:
Serializable
,Comparable<INCHI_RET>
public enum INCHI_RET extends Enum<INCHI_RET>
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_RET
valueOf(String name)
Returns the enum constant of this type with the specified name.static INCHI_RET[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SKIP
public static final INCHI_RET SKIP
-
EOF
public static final INCHI_RET EOF
-
OKAY
public static final INCHI_RET OKAY
-
WARNING
public static final INCHI_RET WARNING
-
ERROR
public static final INCHI_RET ERROR
-
FATAL
public static final INCHI_RET FATAL
-
UNKNOWN
public static final INCHI_RET UNKNOWN
-
BUSY
public static final INCHI_RET BUSY
-
-
Method Detail
-
values
public static INCHI_RET[] 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_RET c : INCHI_RET.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_RET 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
-
-