congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AtomContainerSet.removeAtomContainer
Code IndexAdd Tabnine to your IDE (free)

How to use
removeAtomContainer
method
in
org.openscience.cdk.AtomContainerSet

Best Java code snippets using org.openscience.cdk.AtomContainerSet.removeAtomContainer (Showing top 8 results out of 315)

origin: org.openscience.cdk/cdk-data

  @Override
  public void remove() {
    removeAtomContainer(--pointer);
  }
}
origin: org.openscience.cdk/cdk-data

/**
 * Removes an AtomContainer from this container.
 *
 * @param  atomContainer  The atomContainer to be removed from this container
 */
@Override
public void removeAtomContainer(IAtomContainer atomContainer) {
  for (int i = atomContainerCount - 1; i >= 0; i--) {
    if (atomContainers[i] == atomContainer) removeAtomContainer(i);
  }
}
origin: cdk/cdk

  @Override
  public void remove() {
    removeAtomContainer(--pointer);
  }
}
origin: cdk/cdk

/**
 * Removes an AtomContainer from this container.
 *
 * @param  atomContainer  The atomContainer to be removed from this container
 */
@Override
public void removeAtomContainer(IAtomContainer atomContainer) {
  for (int i = atomContainerCount - 1; i >= 0; i--) {
    if (atomContainers[i] == atomContainer) removeAtomContainer(i);
  }
}
origin: cdk/cdk

/** {@inheritDoc} */
@Override
public void removeAtomContainer(int pos) {
  logger.debug("Removing atom container at pos: ", pos);
  super.removeAtomContainer(pos);
}
origin: cdk/cdk

/** {@inheritDoc} */
@Override
public void removeAtomContainer(IAtomContainer atomContainer) {
  logger.debug("Removing atom container: ", atomContainer);
  super.removeAtomContainer(atomContainer);
}
origin: cdk/cdk

/** {@inheritDoc} */
@Override
public void removeAtomContainer(int pos) {
  logger.debug("Removing atom container at pos: ", pos);
  super.removeAtomContainer(pos);
}
origin: cdk/cdk

/** {@inheritDoc} */
@Override
public void removeAtomContainer(IAtomContainer atomContainer) {
  logger.debug("Removing atom container: ", atomContainer);
  super.removeAtomContainer(atomContainer);
}
org.openscience.cdkAtomContainerSetremoveAtomContainer

Javadoc

Removes an AtomContainer from this container.

Popular methods of AtomContainerSet

  • <init>
    Constructs an empty AtomContainerSet.
  • addAtomContainer
    Adds an atomContainer to this container with the given multiplier.
  • clone
    Clones this AtomContainerSet and its content.
  • getAtomContainerCount
    Returns the number of AtomContainers in this Container.
  • getMultiplier
    Returns the multiplier of the given AtomContainer.
  • notifyChanged
  • setMultiplier
    Sets the coefficient of a AtomContainer to a given value.
  • add
    Adds all atomContainers in the AtomContainerSet to this container.
  • addListener
  • addProperties
  • atomContainers
    Get an iterator for this AtomContainerSet.
  • getAtomContainer
    Returns the AtomContainer at position number in the container.
  • atomContainers,
  • getAtomContainer,
  • getFlag,
  • getFlags,
  • getID,
  • getListenerCount,
  • getMultipliers,
  • getProperties,
  • getProperty

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now