Interface IDescriptor

    • Method Detail

      • initialise

        void initialise​(IChemObjectBuilder builder)
        Initialise the descriptor with the specified chem object builder. This allows descriptors that required domain objects, such as for SMARTS queries to initialise correctly. If you do not need domain objects then this method does not need to be implemented.
        Parameters:
        builder - chem object builder to use with this descriptor
      • getSpecification

        IImplementationSpecification getSpecification()
        Returns a IImplementationSpecification which specifies which descriptor is implemented by this class. These fields are used in the map:
        • Specification-Reference: refers to an entry in a unique dictionary
        • Implementation-Title: anything
        • Implementation-Identifier: a unique identifier for this version of this class
        • Implementation-Vendor: CDK, JOELib, or anything else
        Returns:
        An object containing the descriptor specification
      • getParameterNames

        String[] getParameterNames()
        Returns the names of the parameters for this descriptor. The method returns null or a zero-length Object[] array if the descriptor does not have any parameters.
        Returns:
        An array of String containing the names of the parameters that this descriptor can accept.
      • getParameterType

        Object getParameterType​(String name)
        Returns a class matching that of the parameter with the given name. May only return null for when 'name' does not match any parameters returned by the getParameters() method.
        Parameters:
        name - The name of the parameter whose type is requested
        Returns:
        An Object of the class corresponding to the parameter with the supplied name
      • setParameters

        void setParameters​(Object[] params)
                    throws CDKException
        Sets the parameters for this descriptor. Must be done before calling calculate as the parameters influence the calculation outcome.
        Parameters:
        params - An array of Object containing the parameters for this descriptor
        Throws:
        CDKException - if invalid number of type of parameters are passed to it
        See Also:
        getParameters()
      • getParameters

        Object[] getParameters()
        Returns the current parameter values. If not parameters have been set, it must return the default parameters. The method returns null or a zero-length Object[] array if the descriptor does not have any parameters.
        Returns:
        An array of Object containing the parameter default values
        See Also:
        setParameters(java.lang.Object[])
      • getDescriptorNames

        String[] getDescriptorNames()
        Returns an array of names for each descriptor value calculated. Many descriptors return multiple values. In general it is useful for the descriptor to indicate the names for each value. In many cases, these names can be as simple as X1, X2, ..., XN where X is a prefix and 1, 2, ..., N are the indices. On the other hand it is also possible to return other arbitrary names, which should be documented in the Javadocs for the descriptor (e.g., the CPSA descriptor). Note that by default if a descriptor returns a single value (such as ALOGPDescriptor the return array will have a single element
        Returns:
        An array of descriptor names, equal in length to the number of descriptor calculated..