Example usage for org.springframework.batch.item.file.transform FieldSet toString

List of usage examples for org.springframework.batch.item.file.transform FieldSet toString

Introduction

In this page you can find the example usage for org.springframework.batch.item.file.transform FieldSet toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.ifeng.computing.batch.job.reader.LogDataFileSetMapper.java

@Override
public LogData mapFieldSet(FieldSet fieldSet) throws BindException {
    LogData data = new LogData();

    log.info(fieldSet.toString());

    return data;/*from   w  ww  . j  a v  a 2s .c om*/
}