View Javadoc
1   package org.djunits.value.vfloat.matrix;
2   
3   import java.util.Collection;
4   
5   import org.djunits.unit.DurationUnit;
6   import org.djunits.unit.TimeUnit;
7   import org.djunits.value.storage.StorageType;
8   import org.djunits.value.vfloat.matrix.base.FloatMatrixRelWithAbs;
9   import org.djunits.value.vfloat.matrix.base.FloatSparseValue;
10  import org.djunits.value.vfloat.matrix.data.FloatMatrixData;
11  import org.djunits.value.vfloat.scalar.FloatDuration;
12  import org.djunits.value.vfloat.scalar.FloatTime;
13  import org.djunits.value.vfloat.vector.FloatDurationVector;
14  import org.djunits.value.vfloat.vector.FloatTimeVector;
15  import org.djunits.value.vfloat.vector.data.FloatVectorData;
16  
17  import jakarta.annotation.Generated;
18  
19  /**
20   * Immutable FloatDuration Matrix.
21   * <p>
22   * Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
23   * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
24   * </p>
25   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
26   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
27   */
28  @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2023-07-23T14:06:38.224104100Z")
29  public class FloatDurationMatrix extends FloatMatrixRelWithAbs<TimeUnit, FloatTime, FloatTimeVector, FloatTimeMatrix,
30          DurationUnit, FloatDuration, FloatDurationVector, FloatDurationMatrix>
31  {
32      /** */
33      private static final long serialVersionUID = 20151006L;
34  
35      /**
36       * Construct a FloatDurationMatrix from an internal data object.
37       * @param data FloatMatrixData; the internal data object for the matrix
38       * @param displayUnit DurationUnit; the display unit of the matrix data
39       */
40      public FloatDurationMatrix(final FloatMatrixData data, final DurationUnit displayUnit)
41      {
42          super(data, displayUnit);
43      }
44  
45      /* CONSTRUCTORS WITH float[][] */
46  
47      /**
48       * Construct a FloatDurationMatrix from a float[][] object. The float values are expressed in the displayUnit, and will be
49       * printed using the displayUnit.
50       * @param data float[][]; the data for the matrix, expressed in the displayUnit
51       * @param displayUnit DurationUnit; the unit of the values in the data array, and display unit when printing
52       * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
53       */
54      public FloatDurationMatrix(final float[][] data, final DurationUnit displayUnit, final StorageType storageType)
55      {
56          this(FloatMatrixData.instantiate(data, displayUnit.getScale(), storageType), displayUnit);
57      }
58  
59      /**
60       * Construct a FloatDurationMatrix from a float[][] object. The float values are expressed in the displayUnit. Assume that
61       * the StorageType is DENSE since we offer the data as an array of an array.
62       * @param data float[][]; the data for the matrix
63       * @param displayUnit DurationUnit; the unit of the values in the data array, and display unit when printing
64       */
65      public FloatDurationMatrix(final float[][] data, final DurationUnit displayUnit)
66      {
67          this(data, displayUnit, StorageType.DENSE);
68      }
69  
70      /**
71       * Construct a FloatDurationMatrix from a float[][] object with SI-unit values.
72       * @param data float[][]; the data for the matrix, in SI units
73       * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
74       */
75      public FloatDurationMatrix(final float[][] data, final StorageType storageType)
76      {
77          this(data, DurationUnit.SI, storageType);
78      }
79  
80      /**
81       * Construct a FloatDurationMatrix from a float[][] object with SI-unit values. Assume that the StorageType is DENSE since
82       * we offer the data as an array of an array.
83       * @param data float[][]; the data for the matrix, in SI units
84       */
85      public FloatDurationMatrix(final float[][] data)
86      {
87          this(data, StorageType.DENSE);
88      }
89  
90      /* CONSTRUCTORS WITH FloatDuration[][] */
91  
92      /**
93       * Construct a FloatDurationMatrix from an array of an array of FloatDuration objects. The FloatDuration values are each
94       * expressed in their own unit, but will be internally stored as SI values, all expressed in the displayUnit when printing.
95       * @param data FloatDuration[][]; the data for the matrix
96       * @param displayUnit DurationUnit; the display unit of the values when printing
97       * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
98       */
99      public FloatDurationMatrix(final FloatDuration[][] data, final DurationUnit displayUnit, final StorageType storageType)
100     {
101         this(FloatMatrixData.instantiate(data, storageType), displayUnit);
102     }
103 
104     /**
105      * Construct a FloatDurationMatrix from an array of an array of FloatDuration objects. The FloatDuration values are each
106      * expressed in their own unit, but will be internally stored as SI values, all expressed in the displayUnit when printing.
107      * Assume that the StorageType is DENSE since we offer the data as an array of an array.
108      * @param data FloatDuration[][]; the data for the matrix
109      * @param displayUnit DurationUnit; the display unit of the values when printing
110      */
111     public FloatDurationMatrix(final FloatDuration[][] data, final DurationUnit displayUnit)
112     {
113         this(data, displayUnit, StorageType.DENSE);
114     }
115 
116     /**
117      * Construct a FloatDurationMatrix from an array of an array of FloatDuration objects. The FloatDuration values are each
118      * expressed in their own unit, but will be internally stored as SI values, and expressed using SI units when printing.
119      * since we offer the data as an array of an array.
120      * @param data FloatDuration[][]; the data for the matrix
121      * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
122      */
123     public FloatDurationMatrix(final FloatDuration[][] data, final StorageType storageType)
124     {
125         this(data, DurationUnit.SI, storageType);
126     }
127 
128     /**
129      * Construct a FloatDurationMatrix from an array of an array of FloatDuration objects. The FloatDuration values are each
130      * expressed in their own unit, but will be internally stored as SI values, and expressed using SI units when printing.
131      * Assume that the StorageType is DENSE since we offer the data as an array of an array.
132      * @param data FloatDuration[][]; the data for the matrix
133      */
134     public FloatDurationMatrix(final FloatDuration[][] data)
135     {
136         this(data, StorageType.DENSE);
137     }
138 
139     /* CONSTRUCTORS WITH Collection<FloatSparseValue> */
140 
141     /**
142      * Construct a FloatDurationMatrix from a (sparse) collection of FloatSparseValue objects. The displayUnit indicates the
143      * unit in which the values in the collection are expressed, as well as the unit in which they will be printed.
144      * @param data Collection&lt;FloatSparseValue&gt;; the data for the matrix
145      * @param displayUnit DurationUnit; the display unit of the matrix data, and the unit of the data points
146      * @param rows int; the number of rows of the matrix
147      * @param cols int; the number of columns of the matrix
148      * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
149      */
150     public FloatDurationMatrix(final Collection<FloatSparseValue<DurationUnit, FloatDuration>> data,
151             final DurationUnit displayUnit, final int rows, final int cols, final StorageType storageType)
152     {
153         this(FloatMatrixData.instantiate(data, rows, cols, storageType), displayUnit);
154     }
155 
156     /**
157      * Construct a FloatDurationMatrix from a (sparse) collection of FloatSparseValue objects. The displayUnit indicates the
158      * unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Assume the
159      * storage type is SPARSE, since we offer the data as a collection.
160      * @param data Collection&lt;FloatSparseValue&gt;; the data for the matrix
161      * @param displayUnit DurationUnit; the display unit of the matrix data, and the unit of the data points
162      * @param rows int; the number of rows of the matrix
163      * @param cols int; the number of columns of the matrix
164      */
165     public FloatDurationMatrix(final Collection<FloatSparseValue<DurationUnit, FloatDuration>> data,
166             final DurationUnit displayUnit, final int rows, final int cols)
167     {
168         this(data, displayUnit, rows, cols, StorageType.SPARSE);
169     }
170 
171     /**
172      * Construct a FloatDurationMatrix from a (sparse) collection of FloatSparseValue objects. The displayUnit indicates the
173      * unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Use the SI
174      * unit or base unit as the displayUnit.
175      * @param data Collection&lt;FloatSparseValue&gt;; the data for the matrix
176      * @param rows int; the number of rows of the matrix
177      * @param cols int; the number of columns of the matrix
178      * @param storageType StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
179      */
180     public FloatDurationMatrix(final Collection<FloatSparseValue<DurationUnit, FloatDuration>> data, final int rows,
181             final int cols, final StorageType storageType)
182     {
183         this(data, DurationUnit.SI, rows, cols, storageType);
184     }
185 
186     /**
187      * Construct a FloatDurationMatrix from a (sparse) collection of FloatSparseValue objects. The displayUnit indicates the
188      * unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Use the SI
189      * unit or base unit as the displayUnit. Assume the storage type is SPARSE, since we offer the data as a collection.
190      * @param data Collection&lt;FloatSparseValue&gt;; the data for the matrix
191      * @param rows int; the number of rows of the matrix
192      * @param cols int; the number of columns of the matrix
193      */
194     public FloatDurationMatrix(final Collection<FloatSparseValue<DurationUnit, FloatDuration>> data, final int rows,
195             final int cols)
196     {
197         this(data, DurationUnit.SI, rows, cols, StorageType.SPARSE);
198     }
199 
200     /** {@inheritDoc} */
201     @Override
202     public Class<FloatDuration> getScalarClass()
203     {
204         return FloatDuration.class;
205     }
206 
207     /** {@inheritDoc} */
208     @Override
209     public Class<FloatDurationVector> getVectorClass()
210     {
211         return FloatDurationVector.class;
212     }
213 
214     /** {@inheritDoc} */
215     @Override
216     public FloatDurationMatrix instantiateMatrix(final FloatMatrixData fmd, final DurationUnit displayUnit)
217     {
218         return new FloatDurationMatrix(fmd, displayUnit);
219     }
220 
221     /** {@inheritDoc} */
222     @Override
223     public FloatDurationVector instantiateVector(final FloatVectorData fvd, final DurationUnit displayUnit)
224     {
225         return new FloatDurationVector(fvd, displayUnit);
226     }
227 
228     /** {@inheritDoc} */
229     @Override
230     public FloatDuration instantiateScalarSI(final float valueSI, final DurationUnit displayUnit)
231     {
232         FloatDuration result = FloatDuration.instantiateSI(valueSI);
233         result.setDisplayUnit(displayUnit);
234         return result;
235     }
236 
237     /** {@inheritDoc} */
238     @Override
239     public FloatTimeMatrix instantiateMatrixAbs(final FloatMatrixData fmd, final TimeUnit displayUnit)
240     {
241         return new FloatTimeMatrix(fmd, displayUnit);
242     }
243 
244     /** {@inheritDoc} */
245     @Override
246     public FloatTimeVector instantiateVectorAbs(final FloatVectorData fvd, final TimeUnit displayUnit)
247     {
248         return new FloatTimeVector(fvd, displayUnit);
249     }
250 
251     /** {@inheritDoc} */
252     @Override
253     public FloatTime instantiateScalarAbsSI(final float valueSI, final TimeUnit displayUnit)
254     {
255         FloatTime result = FloatTime.instantiateSI(valueSI);
256         result.setDisplayUnit(displayUnit);
257         return result;
258     }
259 
260 }