org.araneaframework.backend.list.helper.fields
Interface Fields

All Known Implementing Classes:
ConcatFields, MappingNamingStrategyAndFields, StandardFields

public interface Fields

List of field names provider for SQL Helper.

These names correspond to bean fields (e.g. "name", "age", "address.town"].

There are two lists of fields:

Since:
1.1
Author:
Rein Raudjärv
See Also:
BaseListSqlHelper.getFields(), StandardFields, MappingNamingStrategyAndFields, ConcatFields

Method Summary
 Collection getNames()
          Return the list of fields used in SELECT.
 Collection getResultSetNames()
          Return the list of fields read from the ResultSet.
 

Method Detail

getNames

public Collection getNames()
Return the list of fields used in SELECT.

Returns:
List<String> the names of the fields used in SELECT.

getResultSetNames

public Collection getResultSetNames()
Return the list of fields read from the ResultSet.

Returns:
List<String> the names of the fields read from the ResultSet.