javajs.api.GenericCifDataParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmol Show documentation
Show all versions of jmol Show documentation
Jmol: an open-source Java viewer for chemical structures in 3D
package javajs.api;
import java.io.BufferedReader;
import java.util.Map;
public interface GenericCifDataParser {
static final int NONE = -1;
String fullTrim(String str);
Map getAllCifData();
boolean getData() throws Exception;
String getColumnName(int i);
int getColumnCount();
String getFileHeader();
String getColumnData(int i);
String getNextDataToken() throws Exception;
String getNextToken() throws Exception;
String getTokenPeeked();
void parseDataBlockParameters(String[] fields, String key, String data, int[] key2col, int[] col2key) throws Exception;
String peekToken() throws Exception;
String readLine();
GenericCifDataParser set(GenericLineReader reader, BufferedReader br);
String toUnicode(String data);
String skipLoop(boolean doReport) throws Exception;
String fixKey(String key);
}