View Javadoc
1   package org.djunits.value.vdouble.matrix;
2   
3   import org.djunits.unit.TemperatureUnit;
4   import org.djunits.value.StorageType;
5   import org.djunits.value.ValueException;
6   import org.djunits.value.vdouble.scalar.Temperature;
7   
8   /**
9    * Immutable Temperature Matrix.
10   * <p>
11   * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
12   * BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
13   * <p>
14   * $LastChangedDate: 2015-09-29 14:14:28 +0200 (Tue, 29 Sep 2015) $, @version $Revision: 73 $, by $Author: pknoppers $, initial
15   * version Sep 5, 2015 <br>
16   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
17   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
18   */
19  public class TemperatureMatrix
20          extends AbstractDoubleMatrixRel<TemperatureUnit, TemperatureMatrix, MutableTemperatureMatrix, Temperature>
21  {
22      /** */
23      private static final long serialVersionUID = 20151006L;
24  
25      /**
26       * Construct a new Relative Immutable Double TemperatureMatrix.
27       * @param values double[][]; the values of the entries in the new Relative Immutable Double TemperatureMatrix
28       * @param unit TemperatureUnit; the unit of the new Relative Immutable Double TemperatureMatrix
29       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
30       * @throws ValueException when values is null
31       */
32      public TemperatureMatrix(final double[][] values, final TemperatureUnit unit, final StorageType storageType)
33              throws ValueException
34      {
35          super(values, unit, storageType);
36      }
37  
38      /**
39       * Construct a new Relative Immutable Double TemperatureMatrix.
40       * @param values Temperature[][]; the values of the entries in the new Relative Immutable Double TemperatureMatrix
41       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
42       * @throws ValueException when values has zero entries
43       */
44      public TemperatureMatrix(final Temperature[][] values, final StorageType storageType) throws ValueException
45      {
46          super(values, storageType);
47      }
48  
49      /**
50       * Construct a new Relative Immutable Double TemperatureMatrix.
51       * @param data DoubleMatrixData; an internal data object
52       * @param unit TemperatureUnit; the unit
53       */
54      TemperatureMatrix(final DoubleMatrixData data, final TemperatureUnit unit)
55      {
56          super(data, unit);
57      }
58  
59      /** {@inheritDoc} */
60      @Override
61      public final TemperatureMatrix toDense()
62      {
63          return this.data.isDense() ? this : instantiateType(this.data.toDense(), getUnit());
64      }
65  
66      /** {@inheritDoc} */
67      @Override
68      public final TemperatureMatrix toSparse()
69      {
70          return this.data.isSparse() ? this : instantiateType(this.data.toSparse(), getUnit());
71      }
72  
73      /** {@inheritDoc} */
74      @Override
75      protected final TemperatureMatrix instantiateType(final DoubleMatrixData dmd, final TemperatureUnit unit)
76      {
77          return new TemperatureMatrix(dmd, unit);
78      }
79  
80      /** {@inheritDoc} */
81      @Override
82      protected final MutableTemperatureMatrix instantiateMutableType(final DoubleMatrixData dmd, final TemperatureUnit unit)
83      {
84          return new MutableTemperatureMatrix(dmd, unit);
85      }
86  
87      /** {@inheritDoc} */
88      @Override
89      protected final Temperature instantiateScalar(final double value, final TemperatureUnit unit)
90      {
91          return new Temperature(value, unit);
92      }
93  
94  }