Uses of Class
org.goplanit.utils.od.OdMatrixImpl
-
Packages that use OdMatrixImpl Package Description org.goplanit.od.demand Contains the definitions of the Origin-Destination Demand classesorg.goplanit.od.path This package holds the origin-destination path objects.org.goplanit.od.skim This package holds the origin-destination Skim Matrix objects.org.goplanit.utils.od Top-level abstract interfaces to handle Origin-Destination Data -
-
Uses of OdMatrixImpl in org.goplanit.od.demand
Subclasses of OdMatrixImpl in org.goplanit.od.demand Modifier and Type Class Description class
OdDemandMatrix
This class handles the OD demand matrix. -
Uses of OdMatrixImpl in org.goplanit.od.path
Subclasses of OdMatrixImpl in org.goplanit.od.path Modifier and Type Class Description class
OdPathMatrix
This class stores the path objects from each origin to each destination in a full matrix form -
Uses of OdMatrixImpl in org.goplanit.od.skim
Subclasses of OdMatrixImpl in org.goplanit.od.skim Modifier and Type Class Description class
OdSkimMatrix
This class stores an OD Skim matrix. -
Uses of OdMatrixImpl in org.goplanit.utils.od
Subclasses of OdMatrixImpl in org.goplanit.utils.od Modifier and Type Class Description class
OdNonPrimitiveMatrix<T>
This class contains common methods for handling origin-demand matrices where values are non-primitive types, i.e.class
OdPrimitiveMatrix<T extends Number>
This class contains common methods for handling origin-demand matrices.Methods in org.goplanit.utils.od that return OdMatrixImpl Modifier and Type Method Description abstract OdMatrixImpl<T,U>
OdMatrixImpl. deepClone()
An id entity should always support a deep copy, i.e., all "owned" members will be deep copied when a clone of this instance is created via this call.abstract OdMatrixImpl<T,U>
OdMatrixImpl. shallowClone()
Create a shallow copy of this entityConstructors in org.goplanit.utils.od with parameters of type OdMatrixImpl Constructor Description OdMatrixImpl(OdMatrixImpl<T,U> other)
Copy Constructor (shallow copy of matrix contents)
-