olg.csv.bean.annotations
Annotation Type RowBean


@Documented
@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
public @interface RowBean

This annotation must be placed on a concrete class declaration to enable row bean process. This annotation has no effect if placed on an interface declaration.


Optional Element Summary
 Param[] CSVReadingParams
          Allows to specify CSVSettings for reading.
 Param[] CSVWritingParams
          Allows to specify CSVSettings for writing.
 Param[] ODSReadingParams
          Allows to specify ODSSettings for reading.
 Param[] ODSWritingParams
          Allows to specify ODSSettings for writing.
 

ODSReadingParams

public abstract Param[] ODSReadingParams
Allows to specify ODSSettings for reading. This settings will be used by RowBean to instanciate an ODSReader.

Default:
{}

CSVReadingParams

public abstract Param[] CSVReadingParams
Allows to specify CSVSettings for reading. This settings will be used by RowBean to instanciate a CSVReader.

Default:
{}

ODSWritingParams

public abstract Param[] ODSWritingParams
Allows to specify ODSSettings for writing. This settings will be used by RowBean to instanciate an ODSWriter.

Default:
{}

CSVWritingParams

public abstract Param[] CSVWritingParams
Allows to specify CSVSettings for writing. This settings will be used by RowBean to instanciate a CSVWriter.

Default:
{}


Copyright © 2014. All Rights Reserved.