Interface Compound
-
- All Known Subinterfaces:
ComplementCompound
- All Known Implementing Classes:
AbstractCompound,AminoAcidCompound,CaseInsensitiveCompound,CodonCompound,NucleotideCompound,Table.Codon
public interface Compound
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequalsIgnoreCase(Compound compound)StringgetDescription()StringgetLongName()FloatgetMolecularWeight()StringgetShortName()voidsetDescription(String description)voidsetLongName(String longName)voidsetMolecularWeight(Float molecularWeight)voidsetShortName(String shortName)
-
-
-
Method Detail
-
equalsIgnoreCase
boolean equalsIgnoreCase(Compound compound)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
getShortName
String getShortName()
-
setShortName
void setShortName(String shortName)
-
getLongName
String getLongName()
-
setLongName
void setLongName(String longName)
-
getMolecularWeight
Float getMolecularWeight()
-
setMolecularWeight
void setMolecularWeight(Float molecularWeight)
-
-