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 boolean
equalsIgnoreCase(Compound compound)
String
getDescription()
String
getLongName()
Float
getMolecularWeight()
String
getShortName()
void
setDescription(String description)
void
setLongName(String longName)
void
setMolecularWeight(Float molecularWeight)
void
setShortName(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)
-
-