Class CustomPhaseConfig
- java.lang.Object
-
- org.optaplanner.core.config.AbstractConfig<Config_>
-
- org.optaplanner.core.config.phase.PhaseConfig<CustomPhaseConfig>
-
- org.optaplanner.core.config.phase.custom.CustomPhaseConfig
-
public class CustomPhaseConfig extends PhaseConfig<CustomPhaseConfig>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Class<? extends CustomPhaseCommand>>
customPhaseCommandClassList
protected List<CustomPhaseCommand>
customPhaseCommandList
protected Map<String,String>
customProperties
static String
XML_ELEMENT_NAME
-
Constructor Summary
Constructors Constructor Description CustomPhaseConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomPhaseConfig
copyConfig()
Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on itList<Class<? extends CustomPhaseCommand>>
getCustomPhaseCommandClassList()
List<CustomPhaseCommand>
getCustomPhaseCommandList()
Map<String,String>
getCustomProperties()
CustomPhaseConfig
inherit(CustomPhaseConfig inheritedConfig)
Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).void
setCustomPhaseCommandClassList(List<Class<? extends CustomPhaseCommand>> customPhaseCommandClassList)
void
setCustomPhaseCommandList(List<CustomPhaseCommand> customPhaseCommandList)
void
setCustomProperties(Map<String,String> customProperties)
void
visitReferencedClasses(Consumer<Class<?>> classVisitor)
Call the class visitor on each (possibly null) Class instance provided to this config by the user (including those provided in child configs).CustomPhaseConfig
withCustomPhaseCommandClassList(List<Class<? extends CustomPhaseCommand>> customPhaseCommandClassList)
CustomPhaseConfig
withCustomPhaseCommandList(List<CustomPhaseCommand> customPhaseCommandList)
<Solution_>
CustomPhaseConfigwithCustomPhaseCommands(CustomPhaseCommand<Solution_>... customPhaseCommands)
void
withCustomProperties(Map<String,String> customProperties)
-
Methods inherited from class org.optaplanner.core.config.phase.PhaseConfig
getTerminationConfig, setTerminationConfig, toString
-
-
-
-
Field Detail
-
XML_ELEMENT_NAME
public static final String XML_ELEMENT_NAME
- See Also:
- Constant Field Values
-
customPhaseCommandClassList
protected List<Class<? extends CustomPhaseCommand>> customPhaseCommandClassList
-
customPhaseCommandList
protected List<CustomPhaseCommand> customPhaseCommandList
-
-
Method Detail
-
getCustomPhaseCommandClassList
public List<Class<? extends CustomPhaseCommand>> getCustomPhaseCommandClassList()
-
setCustomPhaseCommandClassList
public void setCustomPhaseCommandClassList(List<Class<? extends CustomPhaseCommand>> customPhaseCommandClassList)
-
getCustomPhaseCommandList
public List<CustomPhaseCommand> getCustomPhaseCommandList()
-
setCustomPhaseCommandList
public void setCustomPhaseCommandList(List<CustomPhaseCommand> customPhaseCommandList)
-
withCustomPhaseCommandClassList
public CustomPhaseConfig withCustomPhaseCommandClassList(List<Class<? extends CustomPhaseCommand>> customPhaseCommandClassList)
-
withCustomPhaseCommandList
public CustomPhaseConfig withCustomPhaseCommandList(List<CustomPhaseCommand> customPhaseCommandList)
-
withCustomPhaseCommands
public <Solution_> CustomPhaseConfig withCustomPhaseCommands(CustomPhaseCommand<Solution_>... customPhaseCommands)
-
inherit
public CustomPhaseConfig inherit(CustomPhaseConfig inheritedConfig)
Description copied from class:AbstractConfig
Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).After the inheritance, if a property on this
AbstractConfig
composition is replaced, it should not affect the inherited composition instance.- Overrides:
inherit
in classPhaseConfig<CustomPhaseConfig>
- Parameters:
inheritedConfig
- never null- Returns:
- this
-
copyConfig
public CustomPhaseConfig copyConfig()
Description copied from class:AbstractConfig
Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on it- Specified by:
copyConfig
in classAbstractConfig<CustomPhaseConfig>
- Returns:
- new instance
-
visitReferencedClasses
public void visitReferencedClasses(Consumer<Class<?>> classVisitor)
Description copied from class:AbstractConfig
Call the class visitor on each (possibly null) Class instance provided to this config by the user (including those provided in child configs). Required to create the bean factory in Quarkus.- Specified by:
visitReferencedClasses
in classAbstractConfig<CustomPhaseConfig>
- Parameters:
classVisitor
- The visitor of classes, never null. Can accept null instances of Class
-
-