194195196197198199200201
* <b>Definition:</b> * The value of the measured amount. The value includes an implicit precision in the presentation of the value * </p> */ public QuantityDt setValue( java.math.BigDecimal theValue) { myValue = new DecimalDt(theValue); return this; }
207208209210211212213214
* <b>Definition:</b> * The value of the measured amount. The value includes an implicit precision in the presentation of the value * </p> */ public QuantityDt setValue( long theValue) { myValue = new DecimalDt(theValue); return this; }
196119621963196419651966196719681969
* The amount to reimbuse for a laboratory service. * </p> */ public DecimalDt getFee() { if (myFee == null) { myFee = new DecimalDt(); } return myFee; }
19881989199019911992199319941995
* <b>Definition:</b> * The amount to reimbuse for a laboratory service. * </p> */ public ServiceLab setFee( double theValue) { myFee = new DecimalDt(theValue); return this; }
20012002200320042005200620072008
* <b>Definition:</b> * The amount to reimbuse for a laboratory service. * </p> */ public ServiceLab setFee( java.math.BigDecimal theValue) { myFee = new DecimalDt(theValue); return this; }
20142015201620172018201920202021
* <b>Definition:</b> * The amount to reimbuse for a laboratory service. * </p> */ public ServiceLab setFee( long theValue) { myFee = new DecimalDt(theValue); return this; }
733734735736737738739740741
* Expression level of the gene in RPKM * </p> */ public DecimalDt getExpression() { if (myExpression == null) { myExpression = new DecimalDt(); } return myExpression; }
760761762763764765766767
* <b>Definition:</b> * Expression level of the gene in RPKM * </p> */ public RnaSeq setExpression( double theValue) { myExpression = new DecimalDt(theValue); return this; }
773774775776777778779780
* <b>Definition:</b> * Expression level of the gene in RPKM * </p> */ public RnaSeq setExpression( java.math.BigDecimal theValue) { myExpression = new DecimalDt(theValue); return this; }
786787788789790791792793
* <b>Definition:</b> * Expression level of the gene in RPKM * </p> */ public RnaSeq setExpression( long theValue) { myExpression = new DecimalDt(theValue); return this; }