public class DurationVector extends AbstractDoubleVectorRel<DurationUnit,DurationVector,MutableDurationVector,Duration>
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2015-09-29 14:14:28 +0200 (Tue, 29 Sep 2015) $, @version $Revision: 73 $, by $Author: pknoppers $, initial
version Sep 5, 2015
AbstractDoubleVectorRel.Itr
data
Constructor and Description |
---|
DurationVector(double[] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(DoubleVectorData data,
DurationUnit unit)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(Duration[] values,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(List<Double> values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(List<Duration> values,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(SortedMap<Integer,Double> values,
DurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(SortedMap<Integer,Duration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
Modifier and Type | Method and Description |
---|---|
protected MutableDurationVector |
instantiateMutableType(DoubleVectorData dvd,
DurationUnit unit)
Construct a new Relative Mutable DoubleVector of the right type.
|
protected Duration |
instantiateScalar(double value,
DurationUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected DurationVector |
instantiateType(DoubleVectorData dvd,
DurationUnit unit)
Construct a new Relative Immutable DoubleVector of the right type.
|
Duration[] |
toArray()
Return an array of Duration Scalars from this vector.
|
DurationVector |
toDense()
return a dense version of this vector.
|
DurationVector |
toSparse()
return a sparse version of this vector.
|
checkUnit, checkUnit, checkUnit, divide, get, iterator, minus, mutable, plus, times
cardinality, checkIndex, checkSize, checkSize, equals, getData, getInUnit, getInUnit, getSI, getStorageType, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, size, toString, toString, toString, toString, zSum
expressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelative, setDisplayUnit
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
forEach, spliterator
public DurationVector(double[] values, DurationUnit unit, StorageType storageType) throws ValueException
values
- double[]; the values of the entries in the new Relative Immutable Double DurationVectorunit
- DurationUnit; the unit of the new Relative Immutable Double DurationVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic DurationVector(List<Double> values, DurationUnit unit, StorageType storageType) throws ValueException
values
- List<Double>; the values of the entries in the new Relative Immutable Double DurationVectorunit
- DurationUnit; the unit of the new Relative Immutable Double DurationVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic DurationVector(Duration[] values, StorageType storageType) throws ValueException
values
- Duration[]; the values of the entries in the new Relative Immutable Double DurationVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic DurationVector(List<Duration> values, StorageType storageType) throws ValueException
values
- List<Duration>; the values of the entries in the new Relative Immutable Double DurationVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic DurationVector(SortedMap<Integer,Duration> values, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Duration>; the values of the entries in the new Relative Sparse Mutable Double
DurationVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic DurationVector(SortedMap<Integer,Double> values, DurationUnit unit, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Double>; the map of indexes to values of the Relative Sparse Mutable Double
DurationVectorunit
- DurationUnit; the unit of the new Relative Sparse Mutable Double DurationVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullDurationVector(DoubleVectorData data, DurationUnit unit)
data
- DoubleVectorData; an internal data objectunit
- DurationUnit; the unitprotected final DurationVector instantiateType(DoubleVectorData dvd, DurationUnit unit)
instantiateType
in class AbstractDoubleVectorRel<DurationUnit,DurationVector,MutableDurationVector,Duration>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final MutableDurationVector instantiateMutableType(DoubleVectorData dvd, DurationUnit unit)
instantiateMutableType
in class AbstractDoubleVectorRel<DurationUnit,DurationVector,MutableDurationVector,Duration>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final Duration instantiateScalar(double value, DurationUnit unit)
instantiateScalar
in class AbstractDoubleVectorRel<DurationUnit,DurationVector,MutableDurationVector,Duration>
value
- double; the valueunit
- U; the unitpublic final DurationVector toDense()
public final DurationVector toSparse()
public Duration[] toArray()
RuntimeException
- wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.