Uses of Interface
org.djunits.value.vfloat.scalar.base.FloatScalarInterface
Package | Description |
---|---|
org.djunits.value.vfloat.matrix.base |
Interfaces, abstract classes and utilities for FloatMatrix.
|
org.djunits.value.vfloat.matrix.data |
package-info.java.
|
org.djunits.value.vfloat.scalar |
Float Scalar storage and calculations with units, absolute/relative.
|
org.djunits.value.vfloat.scalar.base |
Utilities, interfaces and abstract classes for FloatScalar.
|
org.djunits.value.vfloat.vector.base |
Interfaces, abstract classes and utilities for FloatVector.
|
org.djunits.value.vfloat.vector.data |
Internal storage for the FloatVector.
|
-
Uses of FloatScalarInterface in org.djunits.value.vfloat.matrix.base
Classes in org.djunits.value.vfloat.matrix.base with type parameters of type FloatScalarInterface Modifier and Type Interface Description interface
FloatMatrixInterface<U extends Unit<U>,S extends FloatScalarInterface<U,S>,V extends FloatVectorInterface<U,S,V>,M extends FloatMatrixInterface<U,S,V,M>>
Interface for the FloatMatrix classes, specifically defining the methods that deal with float values.class
FloatSparseValue<U extends Unit<U>,S extends FloatScalarInterface<U,S>>
Data point for a matrix that can be used for constructing sparse matrices.Methods in org.djunits.value.vfloat.matrix.base with type parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(float[][] valuesInUnit, U unit, StorageType storageType)
Instantiate the FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(float[][] valuesInUnit, U unit, StorageType storageType, Class<M> matrixClass)
Instantiate the FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(Collection<FloatSparseValue<U,S>> values, int rows, int cols, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Float Matrix.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(Collection<FloatSparseValue<U,S>> values, int rows, int cols, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Float Matrix.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(FloatMatrixData values, U unit)
Instantiate the Mutable FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(FloatMatrixData values, U unit, Class<M> matrixClass)
Instantiate the Mutable FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Float Matrix.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Float Matrix.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiateAnonymous(FloatMatrixData values, Unit<?> unit)
Instantiate the Immutable FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiateAnonymous(FloatMatrixData values, Unit<?> unit, Class<M> matrixClass)
Instantiate the Immutable FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiateSI(float[][] valuesSI, U displayUnit, StorageType storageType)
Instantiate the FloatMatrix based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiateSI(float[][] valuesSI, U displayUnit, StorageType storageType, Class<M> matrixClass)
Instantiate the FloatMatrix based on its unit.Methods in org.djunits.value.vfloat.matrix.base with parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType)
Construct a new Relative Immutable Float Matrix.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>, M extends FloatMatrixInterface<U, S, V, M>>
MFloatMatrix. instantiate(S[][] values, U displayUnit, StorageType storageType, Class<M> matrixClass)
Construct a new Relative Immutable Float Matrix. -
Uses of FloatScalarInterface in org.djunits.value.vfloat.matrix.data
Methods in org.djunits.value.vfloat.matrix.data with type parameters of type FloatScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
S[][]FloatMatrixData. 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 FloatScalarInterface<U, S>>
FloatMatrixDataFloatMatrixData. instantiate(Collection<FloatSparseValue<U,S>> values, int rows, int cols, StorageType storageType)
Instantiate a FloatMatrixData with the right data type.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
FloatMatrixDataFloatMatrixData. instantiate(S[][] values, StorageType storageType)
Instantiate a FloatMatrixData with the right data type.Methods in org.djunits.value.vfloat.matrix.data that return FloatScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
S[][]FloatMatrixData. 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.vfloat.matrix.data with parameters of type FloatScalarInterface Modifier and Type Method Description protected static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
S[][]FloatMatrixData. 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 FloatScalarInterface<U, S>>
FloatMatrixDataFloatMatrixData. instantiate(S[][] values, StorageType storageType)
Instantiate a FloatMatrixData with the right data type. -
Uses of FloatScalarInterface in org.djunits.value.vfloat.scalar
Classes in org.djunits.value.vfloat.scalar that implement FloatScalarInterface Modifier and Type Class Description class
FloatAbsoluteTemperature
Easy access methods for the FloatAbsoluteTemperature FloatScalar.class
FloatAbsorbedDose
Easy access methods for the FloatAbsorbedDose FloatScalar, which is relative by definition.class
FloatAcceleration
Easy access methods for the FloatAcceleration FloatScalar, which is relative by definition.class
FloatAmountOfSubstance
Easy access methods for the FloatAmountOfSubstance FloatScalar, which is relative by definition.class
FloatAngle
Easy access methods for the FloatAngle FloatScalar.class
FloatAngularAcceleration
Easy access methods for the FloatAngularAcceleration FloatScalar, which is relative by definition.class
FloatAngularVelocity
Easy access methods for the FloatAngularVelocity FloatScalar, which is relative by definition.class
FloatArea
Easy access methods for the FloatArea FloatScalar, which is relative by definition.class
FloatCatalyticActivity
Easy access methods for the FloatCatalyticActivity FloatScalar, which is relative by definition.class
FloatDensity
Easy access methods for the FloatDensity FloatScalar, which is relative by definition.class
FloatDimensionless
Easy access methods for the FloatDimensionless FloatScalar, which is relative by definition.class
FloatDirection
Easy access methods for the FloatDirection FloatScalar.class
FloatDuration
Easy access methods for the FloatDuration FloatScalar.class
FloatElectricalCapacitance
Easy access methods for the FloatElectricalCapacitance FloatScalar, which is relative by definition.class
FloatElectricalCharge
Easy access methods for the FloatElectricalCharge FloatScalar, which is relative by definition.class
FloatElectricalConductance
Easy access methods for the FloatElectricalConductance FloatScalar, which is relative by definition.class
FloatElectricalCurrent
Easy access methods for the FloatElectricalCurrent FloatScalar, which is relative by definition.class
FloatElectricalInductance
Easy access methods for the FloatElectricalInductance FloatScalar, which is relative by definition.class
FloatElectricalPotential
Easy access methods for the FloatElectricalPotential FloatScalar, which is relative by definition.class
FloatElectricalResistance
Easy access methods for the FloatElectricalResistance FloatScalar, which is relative by definition.class
FloatEnergy
Easy access methods for the FloatEnergy FloatScalar, which is relative by definition.class
FloatEquivalentDose
Easy access methods for the FloatEquivalentDose FloatScalar, which is relative by definition.class
FloatFlowMass
Easy access methods for the FloatFlowMass FloatScalar, which is relative by definition.class
FloatFlowVolume
Easy access methods for the FloatFlowVolume FloatScalar, which is relative by definition.class
FloatForce
Easy access methods for the FloatForce FloatScalar, which is relative by definition.class
FloatFrequency
Easy access methods for the FloatFrequency FloatScalar, which is relative by definition.class
FloatIlluminance
Easy access methods for the FloatIlluminance FloatScalar, which is relative by definition.class
FloatLength
Easy access methods for the FloatLength FloatScalar.class
FloatLinearDensity
Easy access methods for the FloatLinearDensity FloatScalar, which is relative by definition.class
FloatLuminousFlux
Easy access methods for the FloatLuminousFlux FloatScalar, which is relative by definition.class
FloatLuminousIntensity
Easy access methods for the FloatLuminousIntensity FloatScalar, which is relative by definition.class
FloatMagneticFlux
Easy access methods for the FloatMagneticFlux FloatScalar, which is relative by definition.class
FloatMagneticFluxDensity
Easy access methods for the FloatMagneticFluxDensity FloatScalar, which is relative by definition.class
FloatMass
Easy access methods for the FloatMass FloatScalar, which is relative by definition.class
FloatMomentum
Easy access methods for the FloatMomentum FloatScalar, which is relative by definition.class
FloatPosition
Easy access methods for the FloatPosition FloatScalar.class
FloatPower
Easy access methods for the FloatPower FloatScalar, which is relative by definition.class
FloatPressure
Easy access methods for the FloatPressure FloatScalar, which is relative by definition.class
FloatRadioActivity
Easy access methods for the FloatRadioActivity FloatScalar, which is relative by definition.class
FloatSIScalar
Easy access methods for the generic Relative SI FloatScalar.class
FloatSolidAngle
Easy access methods for the FloatSolidAngle FloatScalar, which is relative by definition.class
FloatSpeed
Easy access methods for the FloatSpeed FloatScalar, which is relative by definition.class
FloatTemperature
Easy access methods for the FloatTemperature FloatScalar.class
FloatTime
Easy access methods for the FloatTime FloatScalar.class
FloatTorque
Easy access methods for the FloatTorque FloatScalar, which is relative by definition.class
FloatVolume
Easy access methods for the FloatVolume FloatScalar, which is relative by definition. -
Uses of FloatScalarInterface in org.djunits.value.vfloat.scalar.base
Classes in org.djunits.value.vfloat.scalar.base with type parameters of type FloatScalarInterface Modifier and Type Interface Description interface
FloatScalarInterface<U extends Unit<U>,S extends FloatScalarInterface<U,S>>
Float scalar functions.Subinterfaces of FloatScalarInterface in org.djunits.value.vfloat.scalar.base Modifier and Type Interface Description static interface
FloatScalarInterface.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends FloatScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends FloatScalarInterface.RelWithAbs<AU,A,RU,R>>
Methods for Absolute Scalar.static interface
FloatScalarInterface.Rel<U extends Unit<U>,R extends FloatScalarInterface.Rel<U,R>>
Methods for Relative FloatScalar.static interface
FloatScalarInterface.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends FloatScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends FloatScalarInterface.RelWithAbs<AU,A,RU,R>>
Additional methods for Relative Scalar that has a corresponding Absolute Scalar.Classes in org.djunits.value.vfloat.scalar.base that implement FloatScalarInterface Modifier and Type Class Description class
AbstractFloatScalar<U extends Unit<U>,S extends AbstractFloatScalar<U,S>>
The most basic abstract class for the FloatScalar.class
AbstractFloatScalarAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractFloatScalarAbs<AU,A,RU,R>,RU extends Unit<RU>,R extends AbstractFloatScalarRelWithAbs<AU,A,RU,R>>
The typed, abstract FloatScalarAbs class that forms the basis of all FloatScalar definitions and extensions.
Note: A relative scalar class can implement the toAbs() method if it has an absolute equivalent.class
AbstractFloatScalarRel<U extends Unit<U>,R extends AbstractFloatScalarRel<U,R>>
The typed, abstract FloatScalarRel class that forms the basis of all FloatScalar definitions and extensions.
Note: A relative scalar class can implement the toAbs() method if it has an absolute equivalent.class
AbstractFloatScalarRelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractFloatScalarAbs<AU,A,RU,R>,RU extends Unit<RU>,R extends AbstractFloatScalarRelWithAbs<AU,A,RU,R>>
The typed, abstract FloatScalarRelWithAbs class that forms the basis of the relative FloatScalars suck as Duration that have an absolute equivalent such as Time.Methods in org.djunits.value.vfloat.scalar.base with type parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
SFloatScalar. instantiate(float value, U unit)
Instantiate the FloatScalar based on its unit.static <S extends FloatScalarInterface<?, S>>
SFloatScalar. instantiateAnonymous(float value, Unit<?> unit)
Instantiate the FloatScalar based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
SFloatScalar. instantiateSI(float valueSI, U displayUnit)
Instantiate the FloatScalar with an SI value and add the displayUnit later.static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. max(T r1, T r2)
Return the maximum value of two relative scalars.static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. max(T r1, T r2, T... rn)
Return the maximum value of more than two relative scalars.static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. min(T r1, T r2)
Return the minimum value of two relative scalars.static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. min(T r1, T r2, T... rn)
Return the minimum value of more than two relative scalars.Methods in org.djunits.value.vfloat.scalar.base with parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. max(T r1, T r2, T... rn)
Return the maximum value of more than two relative scalars.static <U extends Unit<U>, T extends FloatScalarInterface<U, T>>
TFloatScalar. min(T r1, T r2, T... rn)
Return the minimum value of more than two relative scalars. -
Uses of FloatScalarInterface in org.djunits.value.vfloat.vector.base
Classes in org.djunits.value.vfloat.vector.base with type parameters of type FloatScalarInterface Modifier and Type Interface Description interface
FloatVectorInterface<U extends Unit<U>,S extends FloatScalarInterface<U,S>,V extends FloatVectorInterface<U,S,V>>
Interface for the FloatVector classes, specifically defining the methods that deal with float values.Methods in org.djunits.value.vfloat.vector.base with type parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(float[] valuesInUnit, U unit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(float[] valuesInUnit, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(List<Float> valueListInUnit, U unit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(List<Float> valueListInUnit, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(SortedMap<Integer,Float> valueMapInUnit, int length, U unit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(SortedMap<Integer,Float> valueMapInUnit, int length, U unit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(FloatVectorData values, U unit)
Instantiate the Mutable FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(FloatVectorData values, U unit, Class<V> vectorClass)
Instantiate the Mutable FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(S[] values, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(S[] values, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateAnonymous(FloatVectorData values, Unit<?> unit)
Instantiate the Immutable FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateAnonymous(FloatVectorData values, Unit<?> unit, Class<V> vectorClass)
Instantiate the Immutable FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateList(List<S> valueList, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateList(List<S> valueList, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateMap(SortedMap<Integer,S> valueMap, int length, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateMap(SortedMap<Integer,S> valueMap, int length, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(float[] valuesSI, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(float[] valuesSI, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(List<Float> valueListSI, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(List<Float> valueListSI, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(SortedMap<Integer,Float> valueMapSI, int length, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiateSI(SortedMap<Integer,Float> valueMapSI, int length, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit.Methods in org.djunits.value.vfloat.vector.base with parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(S[] values, U displayUnit, StorageType storageType)
Instantiate the FloatVector based on its unit.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>, V extends FloatVectorInterface<U, S, V>>
VFloatVector. instantiate(S[] values, U displayUnit, StorageType storageType, Class<V> vectorClass)
Instantiate the FloatVector based on its unit. -
Uses of FloatScalarInterface in org.djunits.value.vfloat.vector.data
Methods in org.djunits.value.vfloat.vector.data with type parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
FloatVectorDataFloatVectorData. instantiate(S[] values, StorageType storageType)
Instantiate a FloatVectorData with the right data type.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
FloatVectorDataFloatVectorData. instantiateList(List<S> valueList, StorageType storageType)
Instantiate a FloatVectorData with the right data type.static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
FloatVectorDataFloatVectorData. instantiateMap(SortedMap<Integer,S> values, int length, StorageType storageType)
Instantiate a FloatVectorData with the right data type.Methods in org.djunits.value.vfloat.vector.data with parameters of type FloatScalarInterface Modifier and Type Method Description static <U extends Unit<U>, S extends FloatScalarInterface<U, S>>
FloatVectorDataFloatVectorData. instantiate(S[] values, StorageType storageType)
Instantiate a FloatVectorData with the right data type.