public class MutableMoneyVector extends AbstractMutableDoubleVectorRel<MoneyUnit,MoneyVector,MutableMoneyVector,Money>
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
AbstractDoubleVectorRel.Itr
data
Constructor and Description |
---|
MutableMoneyVector(double[] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(DoubleVectorData data,
MoneyUnit unit) |
MutableMoneyVector(List<Double> values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(List<Money> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(Money[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(SortedMap<Integer,Double> values,
MoneyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(SortedMap<Integer,Money> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
Modifier and Type | Method and Description |
---|---|
protected MutableMoneyVector |
instantiateMutableType(DoubleVectorData dvd,
MoneyUnit unit)
Construct a new Relative Mutable DoubleVector of the right type.
|
protected Money |
instantiateScalar(double value,
MoneyUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected MoneyVector |
instantiateType(DoubleVectorData dvd,
MoneyUnit unit)
Construct a new Relative Immutable DoubleVector of the right type.
|
Money[] |
toArray()
Return an array of Money Scalars from this vector.
|
MutableMoneyVector |
toDense()
return a dense version of this vector.
|
MutableMoneyVector |
toSparse()
return a sparse version of this vector.
|
abs, assign, ceil, checkCopyOnWrite, copy, decrementBy, decrementBy, decrementBy, divideBy, divideBy, divideBy, floor, immutable, incrementBy, incrementBy, incrementBy, multiplyBy, multiplyBy, multiplyBy, mutable, neg, normalize, rint, round, set, setCopyOnWrite, setInUnit, setSI
checkUnit, checkUnit, checkUnit, divide, get, iterator, minus, 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
DIV, MULT, POW
cardinality, get, getInUnit, getInUnit, getSI, getValuesInUnit, getValuesInUnit, getValuesSI, size, toString, toString, toString, toString, zSum
forEach, spliterator
public MutableMoneyVector(double[] values, MoneyUnit unit, StorageType storageType) throws ValueException
values
- double[]; the values of the entries in the new Relative Immutable Double MoneyVectorunit
- MoneyUnit; the unit of the new Relative Immutable Double MoneyVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic MutableMoneyVector(List<Double> values, MoneyUnit unit, StorageType storageType) throws ValueException
values
- List<Double>; the values of the entries in the new Relative Immutable Double MoneyVectorunit
- MoneyUnit; the unit of the new Relative Immutable Double MoneyVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic MutableMoneyVector(Money[] values, StorageType storageType) throws ValueException
values
- Money[]; the values of the entries in the new Relative Immutable Double MoneyVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic MutableMoneyVector(List<Money> values, StorageType storageType) throws ValueException
values
- List<Money>; the values of the entries in the new Relative Immutable Double MoneyVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic MutableMoneyVector(SortedMap<Integer,Money> values, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Money>; the values of the entries in the new Relative Sparse Mutable Double
MoneyVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic MutableMoneyVector(SortedMap<Integer,Double> values, MoneyUnit unit, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Double>; the map of indexes to values of the Relative Sparse Mutable Double
MoneyVectorunit
- MoneyUnit; the unit of the new Relative Sparse Mutable Double MoneyVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullMutableMoneyVector(DoubleVectorData data, MoneyUnit unit)
data
- DoubleVectorData; an internal data objectunit
- MoneyUnit; the unitprotected final MoneyVector instantiateType(DoubleVectorData dvd, MoneyUnit unit)
instantiateType
in class AbstractDoubleVectorRel<MoneyUnit,MoneyVector,MutableMoneyVector,Money>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final MutableMoneyVector instantiateMutableType(DoubleVectorData dvd, MoneyUnit unit)
instantiateMutableType
in class AbstractDoubleVectorRel<MoneyUnit,MoneyVector,MutableMoneyVector,Money>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final Money instantiateScalar(double value, MoneyUnit unit)
instantiateScalar
in class AbstractDoubleVectorRel<MoneyUnit,MoneyVector,MutableMoneyVector,Money>
value
- double; the valueunit
- U; the unitpublic final MutableMoneyVector toDense()
public final MutableMoneyVector toSparse()
public Money[] toArray()
RuntimeException
- wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.