Class JacksonSolutionFileIO<Solution_>
java.lang.Object
org.optaplanner.persistence.jackson.impl.domain.solution.JacksonSolutionFileIO<Solution_>
- Type Parameters:
Solution_
- the solution type, the class with thePlanningSolution
annotation
- All Implemented Interfaces:
SolutionFileIO<Solution_>
-
Constructor Summary
ConstructorDescriptionJacksonSolutionFileIO
(Class<Solution_> clazz) JacksonSolutionFileIO
(Class<Solution_> clazz, com.fasterxml.jackson.databind.ObjectMapper mapper) -
Method Summary
Modifier and TypeMethodDescriptionEveryPlanningSolution
type potentially has its own file extension.It's highly recommended that this method returns the same value asSolutionFileIO.getInputFileExtension()
, which it does by default unless it's overridden, because a good output file is able to function as an input file.This method is thread-safe.read
(InputStream inputSolutionStream) void
This method is thread-safe.
-
Constructor Details
-
JacksonSolutionFileIO
-
JacksonSolutionFileIO
-
-
Method Details
-
getInputFileExtension
Description copied from interface:SolutionFileIO
EveryPlanningSolution
type potentially has its own file extension. If no specific file extension is defined by the use case, the following are recommended:- If this
SolutionFileIO
implementation serializes to XML, use file extension "xml". - If this
SolutionFileIO
implementation serializes to text, use file extension "txt". - If this
SolutionFileIO
implementation serializes to binary, use file extension "dat".
It's good practice that both the input and the output file have the same file extension, because a good output file is able to function as an input file. Therefore
SolutionFileIO.getOutputFileExtension()
defaults to returning the same as this method.The file extension does not include the dot that separates it from the base name.
This method is thread-safe.
- Specified by:
getInputFileExtension
in interfaceSolutionFileIO<Solution_>
- Returns:
- never null, for example "xml"
- If this
-
getOutputFileExtension
Description copied from interface:SolutionFileIO
It's highly recommended that this method returns the same value asSolutionFileIO.getInputFileExtension()
, which it does by default unless it's overridden, because a good output file is able to function as an input file.- Specified by:
getOutputFileExtension
in interfaceSolutionFileIO<Solution_>
- Returns:
- never null, for example "xml"
- See Also:
-
read
Description copied from interface:SolutionFileIO
This method is thread-safe.- Specified by:
read
in interfaceSolutionFileIO<Solution_>
- Parameters:
inputSolutionFile
- never null- Returns:
- never null
-
read
-
write
Description copied from interface:SolutionFileIO
This method is thread-safe.- Specified by:
write
in interfaceSolutionFileIO<Solution_>
- Parameters:
solution
- never nullfile
- never null, parent directory already exists
-