Uses of Interface
org.djunits.value.vdouble.scalar.base.DoubleScalarInterface
Package | Description |
---|---|
org.djunits.value.vdouble.matrix.base |
Interfaces, abstract classes and utilities for DoubleMatrix.
|
org.djunits.value.vdouble.matrix.data |
Internal data storage for the Matrix.
|
org.djunits.value.vdouble.scalar |
Double Scalar storage and calculations with units, absolute/relative.Note: All code in this package is generated.
|
org.djunits.value.vdouble.scalar.base |
Interfaces, abstract classes and utilities for DoubleScalar.
|
org.djunits.value.vdouble.vector.base |
Interfaces, abstract classes and utilities for DoubleVector.
|
org.djunits.value.vdouble.vector.data |
Internal data storage for the Vector.
|
-
Uses of DoubleScalarInterface in org.djunits.value.vdouble.matrix.base
Classes in org.djunits.value.vdouble.matrix.base with type parameters of type DoubleScalarInterface Modifier and Type Interface Description interface
DoubleMatrixInterface<U extends Unit<U>,S extends DoubleScalarInterface<U,S>,V extends DoubleVectorInterface<U,S,V>,M extends DoubleMatrixInterface<U,S,V,M>>
Interface for the DoubleMatrix classes, specifically defining the methods that deal with double values.class
DoubleSparseValue<U extends Unit<U>,S extends DoubleScalarInterface<U,S>>
Data point for a matrix that can be used for constructing sparse matrices.Methods in org.djunits.value.vdouble.matrix.base with type parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(double[][] valuesInUnit, U unit, StorageType storageType)
Instantiate the DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(double[][] valuesInUnit, U unit, StorageType storageType, Class<M> matrixClass)
Instantiate the DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(Collection<DoubleSparseValue<U,S>> values, int rows, int cols, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Double Matrix.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(Collection<DoubleSparseValue<U,S>> values, int rows, int cols, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Double Matrix.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(DoubleMatrixData values, U unit)
Instantiate the Mutable DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(DoubleMatrixData values, U unit, Class<M> matrixClass)
Instantiate the Mutable DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Double Matrix.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Double Matrix.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiateAnonymous(DoubleMatrixData values, Unit<?> unit)
Instantiate the Immutable DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiateAnonymous(DoubleMatrixData values, Unit<?> unit, Class<M> matrixClass)
Instantiate the Immutable DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiateSI(double[][] valuesSI, U displayUnit, StorageType storageType)
Instantiate the DoubleMatrix based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiateSI(double[][] valuesSI, U displayUnit, StorageType storageType, Class<M> matrixClass)
Instantiate the DoubleMatrix based on its unit.Methods in org.djunits.value.vdouble.matrix.base with parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Double Matrix.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>, M extends DoubleMatrixInterface<U, S, V, M>>
MDoubleMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Double Matrix. -
Uses of DoubleScalarInterface in org.djunits.value.vdouble.matrix.data
Methods in org.djunits.value.vdouble.matrix.data with type parameters of type DoubleScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
S[][]DoubleMatrixData. checkRectangularAndNonEmpty(S[][] values)
Check that a 2D array of float is not null, not empty and not jagged; i.e.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleMatrixDataDoubleMatrixData. instantiate(Collection<DoubleSparseValue<U,S>> values, int rows, int cols, StorageType storageType)
Instantiate a DoubleMatrixData with the right data type.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleMatrixDataDoubleMatrixData. instantiate(S[][] values, StorageType storageType)
Instantiate a DoubleMatrixData with the right data type.Methods in org.djunits.value.vdouble.matrix.data that return DoubleScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
S[][]DoubleMatrixData. checkRectangularAndNonEmpty(S[][] values)
Check that a 2D array of float is not null, not empty and not jagged; i.e.Methods in org.djunits.value.vdouble.matrix.data with parameters of type DoubleScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
S[][]DoubleMatrixData. checkRectangularAndNonEmpty(S[][] values)
Check that a 2D array of float is not null, not empty and not jagged; i.e.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleMatrixDataDoubleMatrixData. instantiate(S[][] values, StorageType storageType)
Instantiate a DoubleMatrixData with the right data type. -
Uses of DoubleScalarInterface in org.djunits.value.vdouble.scalar
Classes in org.djunits.value.vdouble.scalar that implement DoubleScalarInterface Modifier and Type Class Description class
AbsoluteTemperature
Easy access methods for the Absolute AbsoluteTemperature DoubleScalar.class
AbsorbedDose
Easy access methods for the AbsorbedDose DoubleScalar, which is relative by definition.class
Acceleration
Easy access methods for the Acceleration DoubleScalar, which is relative by definition.class
AmountOfSubstance
Easy access methods for the AmountOfSubstance DoubleScalar, which is relative by definition.class
Angle
Easy access methods for the Relative Angle DoubleScalar.class
AngularAcceleration
Easy access methods for the AngularAcceleration DoubleScalar, which is relative by definition.class
AngularVelocity
Easy access methods for the AngularVelocity DoubleScalar, which is relative by definition.class
Area
Easy access methods for the Area DoubleScalar, which is relative by definition.class
CatalyticActivity
Easy access methods for the CatalyticActivity DoubleScalar, which is relative by definition.class
Density
Easy access methods for the Density DoubleScalar, which is relative by definition.class
Dimensionless
Easy access methods for the Dimensionless DoubleScalar, which is relative by definition.class
Direction
Easy access methods for the Absolute Direction DoubleScalar.class
Duration
Easy access methods for the Relative Duration DoubleScalar.class
ElectricalCapacitance
Easy access methods for the ElectricalCapacitance DoubleScalar, which is relative by definition.class
ElectricalCharge
Easy access methods for the ElectricalCharge DoubleScalar, which is relative by definition.class
ElectricalConductance
Easy access methods for the ElectricalConductance DoubleScalar, which is relative by definition.class
ElectricalCurrent
Easy access methods for the ElectricalCurrent DoubleScalar, which is relative by definition.class
ElectricalInductance
Easy access methods for the ElectricalInductance DoubleScalar, which is relative by definition.class
ElectricalPotential
Easy access methods for the ElectricalPotential DoubleScalar, which is relative by definition.class
ElectricalResistance
Easy access methods for the ElectricalResistance DoubleScalar, which is relative by definition.class
Energy
Easy access methods for the Energy DoubleScalar, which is relative by definition.class
EquivalentDose
Easy access methods for the EquivalentDose DoubleScalar, which is relative by definition.class
FlowMass
Easy access methods for the FlowMass DoubleScalar, which is relative by definition.class
FlowVolume
Easy access methods for the FlowVolume DoubleScalar, which is relative by definition.class
Force
Easy access methods for the Force DoubleScalar, which is relative by definition.class
Frequency
Easy access methods for the Frequency DoubleScalar, which is relative by definition.class
Illuminance
Easy access methods for the Illuminance DoubleScalar, which is relative by definition.class
Length
Easy access methods for the Relative Length DoubleScalar.class
LinearDensity
Easy access methods for the LinearDensity DoubleScalar, which is relative by definition.class
LuminousFlux
Easy access methods for the LuminousFlux DoubleScalar, which is relative by definition.class
LuminousIntensity
Easy access methods for the LuminousIntensity DoubleScalar, which is relative by definition.class
MagneticFlux
Easy access methods for the MagneticFlux DoubleScalar, which is relative by definition.class
MagneticFluxDensity
Easy access methods for the MagneticFluxDensity DoubleScalar, which is relative by definition.class
Mass
Easy access methods for the Mass DoubleScalar, which is relative by definition.class
Momentum
Easy access methods for the Momentum DoubleScalar, which is relative by definition.class
Position
Easy access methods for the Absolute Position DoubleScalar.class
Power
Easy access methods for the Power DoubleScalar, which is relative by definition.class
Pressure
Easy access methods for the Pressure DoubleScalar, which is relative by definition.class
RadioActivity
Easy access methods for the RadioActivity DoubleScalar, which is relative by definition.class
SIScalar
Easy access methods for the generic Relative SI DoubleScalar.class
SolidAngle
Easy access methods for the SolidAngle DoubleScalar, which is relative by definition.class
Speed
Easy access methods for the Speed DoubleScalar, which is relative by definition.class
Temperature
Easy access methods for the Relative Temperature DoubleScalar.class
Time
Easy access methods for the Absolute Time DoubleScalar.class
Torque
Easy access methods for the Torque DoubleScalar, which is relative by definition.class
Volume
Easy access methods for the Volume DoubleScalar, which is relative by definition. -
Uses of DoubleScalarInterface in org.djunits.value.vdouble.scalar.base
Classes in org.djunits.value.vdouble.scalar.base with type parameters of type DoubleScalarInterface Modifier and Type Interface Description interface
DoubleScalarInterface<U extends Unit<U>,S extends DoubleScalarInterface<U,S>>
Double scalar functions.Subinterfaces of DoubleScalarInterface in org.djunits.value.vdouble.scalar.base Modifier and Type Interface Description static interface
DoubleScalarInterface.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>>
Methods for Absolute Scalar.static interface
DoubleScalarInterface.Rel<U extends Unit<U>,R extends DoubleScalarInterface.Rel<U,R>>
Methods for Relative DoubleScalar.static interface
DoubleScalarInterface.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>>
Additional methods for Relative Scalar that has a corresponding Absolute Scalar.Classes in org.djunits.value.vdouble.scalar.base that implement DoubleScalarInterface Modifier and Type Class Description class
AbstractDoubleScalar<U extends Unit<U>,S extends AbstractDoubleScalar<U,S>>
The most basic abstract class for the DoubleScalar.class
AbstractDoubleScalarAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>>
The typed, abstract DoubleScalarAbs class that forms the basis of all DoubleScalar definitions and extensions.
Note: A relative scalar class can implement the toAbs() method if it has an absolute equivalent.class
AbstractDoubleScalarRel<U extends Unit<U>,R extends AbstractDoubleScalarRel<U,R>>
The typed, abstract DoubleScalarRel class that forms the basis of all DoubleScalar definitions and extensions.
Note: A relative scalar class can implement the toAbs() method if it has an absolute equivalent.class
AbstractDoubleScalarRelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>>
The typed, abstract DoubleScalarRelWithAbs class that forms the basis of the relative DoubleScalars suck as Duration that have an absolute equivalent such as Time.Methods in org.djunits.value.vdouble.scalar.base with type parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
SDoubleScalar. instantiate(double value, U unit)
Instantiate the DoubleScalar based on its unit.static <S extends DoubleScalarInterface<?, S>>
SDoubleScalar. instantiateAnonymous(double value, Unit<?> unit)
Instantiate the DoubleScalar based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
SDoubleScalar. instantiateSI(double valueSI, U displayUnit)
Instantiate the DoubleScalar with an SI value and add the displayUnit later.static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. max(T r1, T r2)
Return the maximum value of two relative scalars.static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. max(T r1, T r2, T... rn)
Return the maximum value of more than two relative scalars.static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. min(T r1, T r2)
Return the minimum value of two relative scalars.static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. min(T r1, T r2, T... rn)
Return the minimum value of more than two relative scalars.Methods in org.djunits.value.vdouble.scalar.base with parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. max(T r1, T r2, T... rn)
Return the maximum value of more than two relative scalars.static <U extends Unit<U>, T extends DoubleScalarInterface<U, T>>
TDoubleScalar. min(T r1, T r2, T... rn)
Return the minimum value of more than two relative scalars. -
Uses of DoubleScalarInterface in org.djunits.value.vdouble.vector.base
Classes in org.djunits.value.vdouble.vector.base with type parameters of type DoubleScalarInterface Modifier and Type Interface Description interface
DoubleVectorInterface<U extends Unit<U>,S extends DoubleScalarInterface<U,S>,V extends DoubleVectorInterface<U,S,V>>
Interface for the DoubleVector classes, specifically defining the methods that deal with double values.Methods in org.djunits.value.vdouble.vector.base with type parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(double[] valuesInUnit, U unit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(double[] valuesInUnit, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(List<Double> valueListInUnit, U unit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(List<Double> valueListInUnit, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(SortedMap<Integer,Double> valueMapInUnit, int length, U unit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(SortedMap<Integer,Double> valueMapInUnit, int length, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(DoubleVectorData values, U unit)
Instantiate the Mutable DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(DoubleVectorData values, U unit, Class<V> vectorClass)
Instantiate the Mutable DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(S[] values, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(S[] values, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateAnonymous(DoubleVectorData values, Unit<?> unit)
Instantiate the Immutable DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateAnonymous(DoubleVectorData values, Unit<?> unit, Class<V> vectorClass)
Instantiate the Immutable DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateList(List<S> valueList, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateList(List<S> valueList, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateMap(SortedMap<Integer,S> valueMap, int length, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateMap(SortedMap<Integer,S> valueMap, int length, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(double[] valuesSI, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(double[] valuesSI, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(List<Double> valueListSI, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(List<Double> valueListSI, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(SortedMap<Integer,Double> valueMapSI, int length, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiateSI(SortedMap<Integer,Double> valueMapSI, int length, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit.Methods in org.djunits.value.vdouble.vector.base with parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(S[] values, U displayUnit, StorageType storageType)
Instantiate the DoubleVector based on its unit.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>, V extends DoubleVectorInterface<U, S, V>>
VDoubleVector. instantiate(S[] values, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the DoubleVector based on its unit. -
Uses of DoubleScalarInterface in org.djunits.value.vdouble.vector.data
Methods in org.djunits.value.vdouble.vector.data with type parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleVectorDataDoubleVectorData. instantiate(S[] values, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleVectorDataDoubleVectorData. instantiateList(List<S> valueList, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleVectorDataDoubleVectorData. instantiateMap(SortedMap<Integer,S> values, int length, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.Methods in org.djunits.value.vdouble.vector.data with parameters of type DoubleScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends DoubleScalarInterface<U, S>>
DoubleVectorDataDoubleVectorData. instantiate(S[] values, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.