Package org.biojava.nbio.structure
Interface PDBRecord
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
Atom
- All Known Implementing Classes:
AtomImpl
,DBRef
,PDBHeader
,Site
,SSBondImpl
public interface PDBRecord extends Serializable
An interface implemented by all classes that represent PDB records.- Since:
- 1.6
- Author:
- Andreas Prlic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
toPDB()
Returns a PDB file like representation of this record.void
toPDB(StringBuffer buf)
Appends a PDB file like representation of this record to the provided StringBuffer.
-
-
-
Method Detail
-
toPDB
String toPDB()
Returns a PDB file like representation of this record.- Returns:
- a String providing a PDB file like representation of the record.
-
toPDB
void toPDB(StringBuffer buf)
Appends a PDB file like representation of this record to the provided StringBuffer.
-
-