Package ubic.gemma.model.genome
Class PhysicalLocationValueObject
- java.lang.Object
-
- ubic.gemma.model.IdentifiableValueObject<PhysicalLocation>
-
- ubic.gemma.model.genome.PhysicalLocationValueObject
-
- All Implemented Interfaces:
Serializable
,Identifiable
public class PhysicalLocationValueObject extends IdentifiableValueObject<PhysicalLocation>
A very simple value object to represent a physical location- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class ubic.gemma.model.IdentifiableValueObject
id
-
-
Constructor Summary
Constructors Constructor Description PhysicalLocationValueObject()
PhysicalLocationValueObject(PhysicalLocation location)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Integer
getBin()
String
getChromosome()
Long
getNucleotide()
Integer
getNucleotideLength()
String
getStrand()
TaxonValueObject
getTaxon()
int
hashCode()
void
setBin(Integer bin)
void
setChromosome(String chromosome)
void
setNucleotide(Long nucleotide)
void
setNucleotideLength(Integer nucleotideLength)
void
setStrand(String strand)
void
setTaxon(TaxonValueObject taxon)
-
Methods inherited from class ubic.gemma.model.IdentifiableValueObject
getId, setId
-
-
-
-
Constructor Detail
-
PhysicalLocationValueObject
public PhysicalLocationValueObject()
-
PhysicalLocationValueObject
public PhysicalLocationValueObject(PhysicalLocation location)
-
-
Method Detail
-
getNucleotide
public Long getNucleotide()
-
getNucleotideLength
public Integer getNucleotideLength()
-
getStrand
public String getStrand()
-
getBin
public Integer getBin()
-
getChromosome
public String getChromosome()
-
getTaxon
public TaxonValueObject getTaxon()
-
setNucleotideLength
public void setNucleotideLength(Integer nucleotideLength)
-
setStrand
public void setStrand(String strand)
-
setBin
public void setBin(Integer bin)
-
setChromosome
public void setChromosome(String chromosome)
-
setTaxon
public void setTaxon(TaxonValueObject taxon)
-
setNucleotide
public void setNucleotide(Long nucleotide)
-
-