Java org.springframework.batch.item ExecutionContext fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.batch.item ExecutionContext fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Constructor

ExecutionContext(Map map)
Initializes a new execution context with the contents of another map.
ExecutionContext(ExecutionContext executionContext)
Initializes a new ExecutionContext with the contents of another ExecutionContext .
ExecutionContext()
Default constructor.

Method

booleancontainsKey(String key)
Indicates whether or not a key is represented in this context.
Set>entrySet()
Returns the entry set containing the contents of this context.
Objectget(String key)
Getter for the value represented by the provided key.
doublegetDouble(String key, double defaultDouble)
Typesafe Getter for the Double represented by the provided key with default value to return if key is not represented.
intgetInt(String key, int defaultInt)
Typesafe Getter for the Integer represented by the provided key with default value to return if key is not represented.
intgetInt(String key)
Typesafe Getter for the Integer represented by the provided key.
longgetLong(String key)
Typesafe Getter for the Long represented by the provided key.
longgetLong(String key, long defaultLong)
Typesafe Getter for the Long represented by the provided key with default value to return if key is not represented.
StringgetString(String key, String defaultString)
Typesafe Getter for the String represented by the provided key with default value to return if key is not represented.
StringgetString(String key)
Typesafe Getter for the String represented by the provided key.
booleanisEmpty()
Indicates whether or not the context is empty.
voidput(String key, @Nullable Object value)
Add an Object value to the context.
voidputDouble(String key, double value)
Add a Double value to the context.
voidputInt(String key, int value)
Adds an Integer value to the context.
voidputLong(String key, long value)
Adds a Long value to the context.
voidputString(String key, @Nullable String value)
Adds a String value to the context.
Objectremove(String key)
Removes the mapping for a key from this context if it is present.
intsize()
Returns number of entries in the context