Enum INCHI_KEY_STATUS

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<INCHI_KEY_STATUS>

    public enum INCHI_KEY_STATUS
    extends java.lang.Enum<INCHI_KEY_STATUS>

    Type-safe enumeration of InChIKey check return codes.

    InChI library return values:
    VALID_STANDARD (0) INVALID_LENGTH (1) INVALID_LAYOUT (2) INVALID_VERSION (3)

    See inchi_api.h.

    • Field Detail

      • indx

        private final int indx
        Internal InChI index (from inchi_api.h).
    • Constructor Detail

      • INCHI_KEY_STATUS

        private INCHI_KEY_STATUS​(int indx)
        Constructor.
    • Method Detail

      • values

        public static INCHI_KEY_STATUS[] 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_KEY_STATUS c : INCHI_KEY_STATUS.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_KEY_STATUS valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getIndx

        public int getIndx()