Java org.springframework.batch.core JobParametersBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.batch.core JobParametersBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.batch.core JobParametersBuilder.

The text is from its open source code.

Constructor

Method

JobParametersBuilderaddDate(String key, Date parameter)
Add a new identifying Date parameter for the given key.
JobParametersBuilderaddDouble(String key, Double parameter)
Add a new identifying Double parameter for the given key.
JobParametersBuilderaddLong(String key, Long parameter)
Add a new identifying Long parameter for the given key.
JobParametersBuilderaddParameter(String key, JobParameter jobParameter)
Add a new JobParameter for the given key.
JobParametersBuilderaddString(String key, String parameter)
Add a new identifying String parameter for the given key.
JobParameterstoJobParameters()
Conversion method that takes the current state of this builder and returns it as a JobParameters object.
StringtoString()
Returns a string representation of the object.