org.xmlcml.cml.tools.AtomGeometry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chemdraw-converter Show documentation
Show all versions of chemdraw-converter Show documentation
Converts CDX and CDXML from and to CML
The newest version!
/**
* Copyright 2011 Peter Murray-Rust et. al.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.xmlcml.cml.tools;
import java.util.ArrayList;
import java.util.List;
public enum AtomGeometry {
DEFAULT(0),
ANY(1),
LINEAR(2),
TRIGONAL(3),
TETRAHEDRAL(4)
;
private int intValue;
private static List atomGeometryList;
static {
atomGeometryList = new ArrayList();
for (AtomGeometry ag : AtomGeometry.values()) {
atomGeometryList.add(ag);
}
}
private AtomGeometry(int intValue) {
this.intValue = intValue;
}
public int getIntValue() {
return intValue;
}
public static AtomGeometry getGeometry(int size) {
return (size < 0 || size >= atomGeometryList.size()) ? null : atomGeometryList.get(size);
}
}