Uses of Class
org.springframework.batch.core.JobParameter
Package
Description
Core domain context for Spring Batch covering jobs, steps, configuration and execution
abstractions.
Support classes for implementations of the batch APIs.
-
Uses of JobParameter in org.springframework.batch.core
Modifier and TypeMethodDescriptionMap<String,
JobParameter<?>> JobParameters.getParameters()
Get a map of all parameters.Modifier and TypeMethodDescriptionJobParametersBuilder.addJobParameter
(String key, JobParameter<?> jobParameter) Add a newJobParameter
for the given key.JobParametersBuilder.addParameter
(String key, JobParameter<?> jobParameter) Deprecated, for removal: This API element is subject to removal in a future version.since 5.0, scheduled for removal in 5.2.ModifierConstructorDescriptionJobParameters
(Map<String, JobParameter<?>> parameters) Constructor that is initialized with the content of aMap
that contains aString
key and aJobParameter
value. -
Uses of JobParameter in org.springframework.batch.core.converter
Modifier and TypeMethodDescriptionprotected JobParameter<?>
Decode a job parameter from a string.protected JobParameter
Modifier and TypeMethodDescriptionprotected String
DefaultJobParametersConverter.encode
(JobParameter<?> jobParameter) Encode a job parameter to a string.protected String
JsonJobParametersConverter.encode
(JobParameter<?> jobParameter)