View Javadoc
1   package org.djunits.value.vdouble.vector;
2   
3   import java.util.List;
4   import java.util.SortedMap;
5   
6   import org.djunits.unit.VolumeUnit;
7   import org.djunits.value.StorageType;
8   import org.djunits.value.ValueException;
9   import org.djunits.value.vdouble.scalar.Volume;
10  
11  /**
12   * Mutable Double VolumeVector, a vector of values with a VolumeUnit.
13   * <p>
14   * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
15   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
16   * </p>
17   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
18   * initial version Oct 9, 2015 <br>
19   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
20   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
21   */
22  public class MutableVolumeVector extends AbstractMutableDoubleVectorRel<VolumeUnit, VolumeVector, MutableVolumeVector, Volume>
23  {
24      /** */
25      private static final long serialVersionUID = 20151109L;
26  
27      /**
28       * Construct a new Relative Immutable Double VolumeVector.
29       * @param values double[]; the values of the entries in the new Relative Immutable Double VolumeVector
30       * @param unit VolumeUnit; the unit of the new Relative Immutable Double VolumeVector
31       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
32       * @throws ValueException when values is null
33       */
34      public MutableVolumeVector(final double[] values, final VolumeUnit unit, final StorageType storageType)
35              throws ValueException
36      {
37          super(values, unit, storageType);
38      }
39  
40      /**
41       * Construct a new Relative Immutable Double VolumeVector.
42       * @param values List&lt;Double&gt;; the values of the entries in the new Relative Immutable Double VolumeVector
43       * @param unit VolumeUnit; the unit of the new Relative Immutable Double VolumeVector
44       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
45       * @throws ValueException when values is null
46       */
47      public MutableVolumeVector(final List<Double> values, final VolumeUnit unit, final StorageType storageType)
48              throws ValueException
49      {
50          super(values, unit, storageType);
51      }
52  
53      /**
54       * Construct a new Relative Immutable Double VolumeVector.
55       * @param values Volume[]; the values of the entries in the new Relative Immutable Double VolumeVector
56       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
57       * @throws ValueException when values has zero entries
58       */
59      public MutableVolumeVector(final Volume[] values, final StorageType storageType) throws ValueException
60      {
61          super(values, storageType);
62      }
63  
64      /**
65       * Construct a new Relative Immutable Double VolumeVector.
66       * @param values List&lt;Volume&gt;; the values of the entries in the new Relative Immutable Double VolumeVector
67       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
68       * @throws ValueException when values has zero entries
69       */
70      public MutableVolumeVector(final List<Volume> values, final StorageType storageType) throws ValueException
71      {
72          super(values, storageType);
73      }
74  
75      /**
76       * Construct a new Relative Immutable Double VolumeVector.
77       * @param values SortedMap&lt;Integer, Volume&gt;; the values of the entries in the new Relative Sparse Mutable Double
78       *            VolumeVector
79       * @param length int; the size of the vector
80       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
81       * @throws ValueException when values has zero entries
82       */
83      public MutableVolumeVector(final SortedMap<Integer, Volume> values, final int length, final StorageType storageType)
84              throws ValueException
85      {
86          super(values, length, storageType);
87      }
88  
89      /**
90       * Construct a new Relative Immutable Double VolumeVector.
91       * @param values SortedMap&lt;Integer, Double&gt;; the map of indexes to values of the Relative Sparse Mutable Double
92       *            VolumeVector
93       * @param unit VolumeUnit; the unit of the new Relative Sparse Mutable Double VolumeVector
94       * @param length int; the size of the vector
95       * @param storageType StorageType; the data type to use (e.g., DENSE or SPARSE)
96       * @throws ValueException when values is null
97       */
98      public MutableVolumeVector(final SortedMap<Integer, Double> values, final VolumeUnit unit, final int length,
99              final StorageType storageType) throws ValueException
100     {
101         super(values, unit, length, storageType);
102     }
103 
104     /**
105      * @param data DoubleVectorData; an internal data object
106      * @param unit VolumeUnit; the unit
107      */
108     MutableVolumeVector(final DoubleVectorData data, final VolumeUnit unit)
109     {
110         super(data, unit);
111     }
112 
113     /** {@inheritDoc} */
114     @Override
115     protected final VolumeVector instantiateType(final DoubleVectorData dvd, final VolumeUnit unit)
116     {
117         return new VolumeVector(dvd, unit);
118     }
119 
120     /** {@inheritDoc} */
121     @Override
122     protected final MutableVolumeVector instantiateMutableType(final DoubleVectorData dvd, final VolumeUnit unit)
123     {
124         return new MutableVolumeVector(dvd, unit);
125     }
126 
127     /** {@inheritDoc} */
128     @Override
129     protected final Volume instantiateScalar(final double value, final VolumeUnit unit)
130     {
131         return new Volume(value, unit);
132     }
133 
134     /** {@inheritDoc} */
135     @Override
136     public final MutableVolumeVector toDense()
137     {
138         return this.data.isDense() ? (MutableVolumeVector) this : instantiateMutableType(this.data.toDense(), getUnit());
139     }
140 
141     /** {@inheritDoc} */
142     @Override
143     public final MutableVolumeVector toSparse()
144     {
145         return this.data.isSparse() ? (MutableVolumeVector) this : instantiateMutableType(this.data.toSparse(), getUnit());
146     }
147 
148     /**
149      * Return an array of Volume Scalars from this vector.
150      * @return Volume[]; an array of Volume Scalars from this vector
151      * @throws RuntimeException wrapping a ValueException on error getting one of the values
152      */
153     public Volume[] toArray()
154     {
155         Volume[] array = new Volume[size()];
156         for (int i = 0; i < size(); i++)
157         {
158             try
159             {
160                 array[i] = get(i);
161             }
162             catch (ValueException exception)
163             {
164                 throw new RuntimeException(exception);
165             }
166         }
167         return array;
168     }
169 
170 }