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

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

Introduction

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

The text is from its open source code.

Field

BatchStatusCOMPLETED
The order of the status values is significant because it can be used to aggregate a set of status values - the result should be the maximum value.
BatchStatusSTARTING
BatchStatusSTARTED
BatchStatusSTOPPING
BatchStatusSTOPPED
BatchStatusFAILED
BatchStatusABANDONED
BatchStatusUNKNOWN

Method

booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
booleanisGreaterThan(BatchStatus other)
booleanisLessThan(BatchStatus other)
booleanisRunning()
Convenience method to decide if a status indicates work is in progress.
booleanisUnsuccessful()
Convenience method to decide if a status indicates execution was unsuccessful.
BatchStatusmax(BatchStatus status1, BatchStatus status2)