927928929930931932933934935
* Intensity(expression) of the gene * </p> */ public DecimalDt getIntensity() { if (myIntensity == null) { myIntensity = new DecimalDt(); } return myIntensity; }
954955956957958959960961
* <b>Definition:</b> * Intensity(expression) of the gene * </p> */ public Sample setIntensity( double theValue) { myIntensity = new DecimalDt(theValue); return this; }
967968969970971972973974
* <b>Definition:</b> * Intensity(expression) of the gene * </p> */ public Sample setIntensity( java.math.BigDecimal theValue) { myIntensity = new DecimalDt(theValue); return this; }
980981982983984985986987
* <b>Definition:</b> * Intensity(expression) of the gene * </p> */ public Sample setIntensity( long theValue) { myIntensity = new DecimalDt(theValue); return this; }
687688689690691692693694695
* <b>Definition:</b> * * </p> */ public DecimalDt addDecimalErr() { DecimalDt newType = new DecimalDt(); getDecimalErr().add(newType); return newType; }
721722723724725726727728
*/ public Test addDecimalErr( double theValue) { if (myDecimalErr == null) { myDecimalErr = new java.util.ArrayList<DecimalDt>(); } myDecimalErr.add(new DecimalDt(theValue)); return this; }
739740741742743744745746
*/ public Test addDecimalErr( java.math.BigDecimal theValue) { if (myDecimalErr == null) { myDecimalErr = new java.util.ArrayList<DecimalDt>(); } myDecimalErr.add(new DecimalDt(theValue)); return this; }
757758759760761762763764
*/ public Test addDecimalErr( long theValue) { if (myDecimalErr == null) { myDecimalErr = new java.util.ArrayList<DecimalDt>(); } myDecimalErr.add(new DecimalDt(theValue)); return this; }
801802803804805806807808809
* <b>Definition:</b> * * </p> */ public DecimalDt addDecimalCorr() { DecimalDt newType = new DecimalDt(); getDecimalCorr().add(newType); return newType; }
835836837838839840841842
*/ public Test addDecimalCorr( double theValue) { if (myDecimalCorr == null) { myDecimalCorr = new java.util.ArrayList<DecimalDt>(); } myDecimalCorr.add(new DecimalDt(theValue)); return this; }