io.github.dan2097.jnainchi.inchi.inchi_Input_V3000 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jna-inchi-api Show documentation
Show all versions of jna-inchi-api Show documentation
Functionality for calling the InChI library from Java. Requires an appropriate InChI binary on the classpath to use
/**
* JNA-InChI - Library for calling InChI from Java
* Copyright © 2018 Daniel Lowe
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package io.github.dan2097.jnainchi.inchi;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Structure;
import com.sun.jna.Structure.ByReference;
import com.sun.jna.ptr.IntByReference;
import com.sun.jna.ptr.PointerByReference;
/**
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class inchi_Input_V3000 extends Structure implements ByReference {
public int n_non_star_atoms;
public int n_star_atoms;
/**
* Index as supplied for atoms
* C type : int*
*/
public IntByReference atom_index_orig;
/**
* = index or -1 for star atom
* C type : int*
*/
public IntByReference atom_index_fin;
/** Not used yet. */
public int n_sgroups;
/** Not used yet. */
public int n_3d_constraints;
public int n_collections;
public int n_non_haptic_bonds;
public int n_haptic_bonds;
/**
* Haptic_bonds[i] is pointer to int
* C type : int**
*/
public PointerByReference lists_haptic_bonds;
public int n_steabs;
/**
* steabs[k][0] - not used
* C type : int**
*/
public PointerByReference lists_steabs;
public int n_sterel;
/**
* sterel[k][0] - n from "STERELn" tag
* C type : int**
*/
public PointerByReference lists_sterel;
public int n_sterac;
/**
* sterac[k][0] - n from "STERACn" tag
* C type : int**
*/
public PointerByReference lists_sterac;
protected List getFieldOrder() {
return Arrays.asList("n_non_star_atoms", "n_star_atoms", "atom_index_orig", "atom_index_fin", "n_sgroups", "n_3d_constraints", "n_collections", "n_non_haptic_bonds", "n_haptic_bonds", "lists_haptic_bonds", "n_steabs", "lists_steabs", "n_sterel", "lists_sterel", "n_sterac", "lists_sterac");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy