public ValueSetEntry( String webServiceId, String quantityId, String timeStamp, String elementSetId, String scenarioId, double[] values) { this.webServiceId = webServiceId; this.quantityId = quantityId; this.timeStamp = timeStamp; this.elementSetId = elementSetId; this.scenarioId = scenarioId; this.needsUpload = false; this.dataBytes = ByteUtil.toByta(values); this.dataLength = dataBytes.length; }
public double[] getValues() { return ByteUtil.toDoubleA(this.dataBytes); }