Package org.planit.path.choice.logit
Class LogitChoiceModelConfigurator<T extends LogitChoiceModel>
- java.lang.Object
-
- org.planit.utils.builder.Configurator<T>
-
- org.planit.path.choice.logit.LogitChoiceModelConfigurator<T>
-
- Type Parameters:
T
- logit choice model type
- Direct Known Subclasses:
MultinomialLogitConfigurator
public class LogitChoiceModelConfigurator<T extends LogitChoiceModel> extends Configurator<T>
Base class for all logit choice model configurator implementations- Author:
- markr
-
-
Field Summary
-
Fields inherited from class org.planit.utils.builder.Configurator
delayedMethodCalls
-
-
Constructor Summary
Constructors Constructor Description LogitChoiceModelConfigurator(Class<T> instanceType)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(LogitChoiceModel logitChoiceModel)
Needed to avoid issues with generics, although it should be obvious that T extends logit choice model-
Methods inherited from class org.planit.utils.builder.Configurator
callVoidMethod, collectParameterTypes, getClassTypeToConfigure, getFirstParameterOfDelayedMethodCall, registerDelayedMethodCall
-
-
-
-
Method Detail
-
configure
public void configure(LogitChoiceModel logitChoiceModel) throws PlanItException
Needed to avoid issues with generics, although it should be obvious that T extends logit choice model- Overrides:
configure
in classConfigurator<T extends LogitChoiceModel>
- Parameters:
logitChoiceModel
- the instance to configure- Throws:
PlanItException
- thrown if error
-
-