Package org.goplanit.mode
Class ModeImpl
- java.lang.Object
-
- org.goplanit.utils.id.IdAbleImpl
-
- org.goplanit.utils.id.ExternalIdAbleImpl
-
- org.goplanit.mode.ModeImpl
-
- All Implemented Interfaces:
Cloneable
,Comparable<IdAble>
,ExternalIdAble
,IdAble
,ManagedId
,Mode
- Direct Known Subclasses:
PredefinedModeImpl
public class ModeImpl extends ExternalIdAbleImpl implements Mode
A Mode is a user class feature representing a single form of transport (car, truck etc.).- Author:
- markr
-
-
Field Summary
Fields Modifier and Type Field Description static Long
DEFAULT_EXTERNAL_ID
-
Fields inherited from interface org.goplanit.utils.mode.Mode
DEFAULT_XML_ID, GLOBAL_DEFAULT_MAXIMUM_SPEED_KMH, GLOBAL_DEFAULT_PCU, MODE_ID_CLASS
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ModeImpl(IdGroupingToken groupId, double maxSpeed, String name, double pcu)
Constructor, using all defaults for non-provided parametersprotected
ModeImpl(IdGroupingToken tokenId, String name, double maxSpeed, double pcu, PhysicalModeFeatures physicalFeatures, UsabilityModeFeatures usabilityFeatures)
Constructor, using all defaults for non-provided parameters
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static long
generateId(IdGroupingToken tokenId)
Generate id for this instancedouble
getMaximumSpeedKmH()
maximum speed for this modeString
getName()
Name of this modedouble
getPcu()
Passenger car unit conversion factor for this modePhysicalModeFeatures
getPhysicalFeatures()
collect the physical features of this modeUsabilityModeFeatures
getUseFeatures()
collect the features of how this mode is used (public, private etc.)long
recreateManagedIds(IdGroupingToken tokenId)
recreate the internal id(s) and set them including the Idable id-
Methods inherited from class org.goplanit.utils.id.ExternalIdAbleImpl
clone, getExternalId, getXmlId, setExternalId, setXmlId
-
Methods inherited from class org.goplanit.utils.id.IdAbleImpl
equals, generateAndSetId, generateId, getId, hashCode, setId
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.goplanit.utils.id.ExternalIdAble
getExternalId, getXmlId, hasExternalId, hasXmlId, setExternalId, setXmlId
-
Methods inherited from interface org.goplanit.utils.id.IdAble
clone, compareTo, getId, idEquals, idHashCode
-
Methods inherited from interface org.goplanit.utils.id.ManagedId
resetChildManagedIdEntities
-
Methods inherited from interface org.goplanit.utils.mode.Mode
getIdClass, getPredefinedModeType, hasName, hasPhysicalFeatures, hasUseFeatures, isPredefinedModeType
-
-
-
-
Field Detail
-
DEFAULT_EXTERNAL_ID
public static final Long DEFAULT_EXTERNAL_ID
-
-
Constructor Detail
-
ModeImpl
protected ModeImpl(IdGroupingToken groupId, double maxSpeed, String name, double pcu)
Constructor, using all defaults for non-provided parameters- Parameters:
groupId
- contiguous id generation within this group for instances of this classname
- the name of this modemaxSpeed
- this mode takes onpcu
- the PCU value of this mode
-
ModeImpl
protected ModeImpl(IdGroupingToken tokenId, String name, double maxSpeed, double pcu, PhysicalModeFeatures physicalFeatures, UsabilityModeFeatures usabilityFeatures)
Constructor, using all defaults for non-provided parameters- Parameters:
tokenId
- contiguous id generation within this group for instances of this classname
- the name of this modemaxSpeed
- this mode takes onpcu
- the PCU value of this modephysicalFeatures
- physical features of the modeusabilityFeatures
- usability features of the mode
-
-
Method Detail
-
generateId
protected static long generateId(IdGroupingToken tokenId)
Generate id for this instance- Parameters:
tokenId
- to use- Returns:
- generated id
-
recreateManagedIds
public long recreateManagedIds(IdGroupingToken tokenId)
recreate the internal id(s) and set them including the Idable id- Specified by:
recreateManagedIds
in interfaceManagedId
- Parameters:
tokenId
- to use- Returns:
- the updated internal id
-
getName
public String getName()
Name of this mode
-
getMaximumSpeedKmH
public double getMaximumSpeedKmH()
maximum speed for this mode- Specified by:
getMaximumSpeedKmH
in interfaceMode
- Returns:
- maximum speed
-
getPcu
public double getPcu()
Passenger car unit conversion factor for this mode
-
getPhysicalFeatures
public final PhysicalModeFeatures getPhysicalFeatures()
collect the physical features of this mode- Specified by:
getPhysicalFeatures
in interfaceMode
- Returns:
- the physical mode features
-
getUseFeatures
public final UsabilityModeFeatures getUseFeatures()
collect the features of how this mode is used (public, private etc.)- Specified by:
getUseFeatures
in interfaceMode
- Returns:
- the use features of this mode
-
-