Class MoveListFactoryConfig
- java.lang.Object
-
- org.optaplanner.core.config.AbstractConfig<Config_>
-
- org.optaplanner.core.config.heuristic.selector.SelectorConfig<Config_>
-
- org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig<MoveListFactoryConfig>
-
- org.optaplanner.core.config.heuristic.selector.move.factory.MoveListFactoryConfig
-
public class MoveListFactoryConfig extends MoveSelectorConfig<MoveListFactoryConfig>
-
-
Field Summary
Fields Modifier and Type Field Description protected Class<? extends MoveListFactory>moveListFactoryClassprotected Map<String,String>moveListFactoryCustomPropertiesstatic StringXML_ELEMENT_NAME-
Fields inherited from class org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig
cacheType, filterClass, probabilityWeightFactoryClass, selectedCountLimit, selectionOrder, sorterClass, sorterComparatorClass, sorterOrder, sorterWeightFactoryClass
-
-
Constructor Summary
Constructors Constructor Description MoveListFactoryConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MoveListFactoryConfigcopyConfig()Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)on itClass<? extends MoveListFactory>getMoveListFactoryClass()Map<String,String>getMoveListFactoryCustomProperties()MoveListFactoryConfiginherit(MoveListFactoryConfig inheritedConfig)Inherits each property of theinheritedConfigunless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).voidsetMoveListFactoryClass(Class<? extends MoveListFactory> moveListFactoryClass)voidsetMoveListFactoryCustomProperties(Map<String,String> moveListFactoryCustomProperties)StringtoString()-
Methods inherited from class org.optaplanner.core.config.heuristic.selector.move.MoveSelectorConfig
extractLeafMoveSelectorConfigsIntoList, getCacheType, getFilterClass, getFixedProbabilityWeight, getProbabilityWeightFactoryClass, getSelectedCountLimit, getSelectionOrder, getSorterClass, getSorterComparatorClass, getSorterOrder, getSorterWeightFactoryClass, inheritFolded, setCacheType, setFilterClass, setFixedProbabilityWeight, setProbabilityWeightFactoryClass, setSelectedCountLimit, setSelectionOrder, setSorterClass, setSorterComparatorClass, setSorterOrder, setSorterWeightFactoryClass, withCacheType, withFilterClass, withFixedProbabilityWeight, withProbabilityWeightFactoryClass, withSelectedCountLimit, withSelectionOrder, withSorterClass, withSorterComparatorClass, withSorterOrder, withSorterWeightFactoryClass
-
-
-
-
Field Detail
-
XML_ELEMENT_NAME
public static final String XML_ELEMENT_NAME
- See Also:
- Constant Field Values
-
moveListFactoryClass
protected Class<? extends MoveListFactory> moveListFactoryClass
-
-
Method Detail
-
getMoveListFactoryClass
public Class<? extends MoveListFactory> getMoveListFactoryClass()
-
setMoveListFactoryClass
public void setMoveListFactoryClass(Class<? extends MoveListFactory> moveListFactoryClass)
-
setMoveListFactoryCustomProperties
public void setMoveListFactoryCustomProperties(Map<String,String> moveListFactoryCustomProperties)
-
inherit
public MoveListFactoryConfig inherit(MoveListFactoryConfig inheritedConfig)
Description copied from class:AbstractConfigInherits each property of theinheritedConfigunless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).After the inheritance, if a property on this
AbstractConfigcomposition is replaced, it should not affect the inherited composition instance.- Overrides:
inheritin classMoveSelectorConfig<MoveListFactoryConfig>- Parameters:
inheritedConfig- never null- Returns:
- this
-
copyConfig
public MoveListFactoryConfig copyConfig()
Description copied from class:AbstractConfigTypically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)on it- Specified by:
copyConfigin classAbstractConfig<MoveListFactoryConfig>- Returns:
- new instance
-
toString
public String toString()
- Overrides:
toStringin classAbstractConfig<MoveListFactoryConfig>
-
-