public class FloatForceVector extends AbstractFloatVectorRel<ForceUnit,FloatForceVector,MutableFloatForceVector,FloatForce>
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.
AbstractFloatVectorRel.Itr
data
Constructor and Description |
---|
FloatForceVector(float[] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(FloatForce[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(FloatVectorData data,
ForceUnit unit) |
FloatForceVector(List<Float> values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(List<FloatForce> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(SortedMap<Integer,Float> values,
ForceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(SortedMap<Integer,FloatForce> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
Modifier and Type | Method and Description |
---|---|
protected MutableFloatForceVector |
instantiateMutableType(FloatVectorData dvd,
ForceUnit unit)
Construct a new Relative Mutable FloatVector of the right type.
|
protected FloatForce |
instantiateScalar(float value,
ForceUnit unit)
Construct a new Relative Immutable FloatScalar of the right type.
|
protected FloatForceVector |
instantiateType(FloatVectorData dvd,
ForceUnit unit)
Construct a new Relative Immutable FloatVector of the right type.
|
FloatForce[] |
toArray()
Return an array of FloatForce Scalars from this vector.
|
FloatForceVector |
toDense()
return a dense version of this vector.
|
FloatForceVector |
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 FloatForceVector(float[] values, ForceUnit unit, StorageType storageType) throws ValueException
values
- float[]; the values of the entries in the new Relative Immutable Float FloatForceVectorunit
- ForceUnit; the unit of the new Relative Immutable Float FloatForceVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic FloatForceVector(List<Float> values, ForceUnit unit, StorageType storageType) throws ValueException
values
- List<Float>; the values of the entries in the new Relative Immutable Float FloatForceVectorunit
- ForceUnit; the unit of the new Relative Immutable Float FloatForceVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic FloatForceVector(FloatForce[] values, StorageType storageType) throws ValueException
values
- FloatForce[]; the values of the entries in the new Relative Immutable Float FloatForceVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic FloatForceVector(List<FloatForce> values, StorageType storageType) throws ValueException
values
- List<FloatForce>; the values of the entries in the new Relative Immutable Float FloatForceVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic FloatForceVector(SortedMap<Integer,FloatForce> values, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, FloatForce>; the values of the entries in the new Relative Sparse Mutable Float
FloatForceVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic FloatForceVector(SortedMap<Integer,Float> values, ForceUnit unit, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Float>; the map of indexes to values of the Relative Sparse Mutable Float
FloatForceVectorunit
- ForceUnit; the unit of the new Relative Sparse Mutable Float FloatForceVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullFloatForceVector(FloatVectorData data, ForceUnit unit)
data
- FloatVectorData; an internal data objectunit
- ForceUnit; the unitprotected final FloatForceVector instantiateType(FloatVectorData dvd, ForceUnit unit)
instantiateType
in class AbstractFloatVectorRel<ForceUnit,FloatForceVector,MutableFloatForceVector,FloatForce>
dvd
- FloatVectorData; an internal data objectunit
- U; the unitprotected final MutableFloatForceVector instantiateMutableType(FloatVectorData dvd, ForceUnit unit)
instantiateMutableType
in class AbstractFloatVectorRel<ForceUnit,FloatForceVector,MutableFloatForceVector,FloatForce>
dvd
- FloatVectorData; an internal data objectunit
- U; the unitprotected final FloatForce instantiateScalar(float value, ForceUnit unit)
instantiateScalar
in class AbstractFloatVectorRel<ForceUnit,FloatForceVector,MutableFloatForceVector,FloatForce>
value
- float; the valueunit
- U; the unitpublic final FloatForceVector toDense()
public final FloatForceVector toSparse()
public FloatForce[] toArray()
RuntimeException
- wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.