Class PostgreSqlResultColumn
- java.lang.Object
-
- com.feedzai.commons.sql.abstraction.dml.result.ResultColumn
-
- com.feedzai.commons.sql.abstraction.dml.result.PostgreSqlResultColumn
-
- All Implemented Interfaces:
Serializable
public class PostgreSqlResultColumn extends ResultColumn
The PostgreSql column result implementation.- Since:
- 2.0.0
- Author:
- Rui Vilao (rui.vilao@feedzai.com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.feedzai.commons.sql.abstraction.dml.result.ResultColumn
name, val
-
-
Constructor Summary
Constructors Constructor Description PostgreSqlResultColumn(String name, Object val)Creates a new instance ofPostgreSqlResultColumn.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ObjectprocessObject(Object o)Overrides default behaviour for JSON values, that are converted to strings.
-
-
-
Constructor Detail
-
PostgreSqlResultColumn
public PostgreSqlResultColumn(String name, Object val)
Creates a new instance ofPostgreSqlResultColumn.- Parameters:
name- The column name.val- The value.
-
-
Method Detail
-
processObject
protected Object processObject(Object o)
Overrides default behaviour for JSON values, that are converted to strings.- Overrides:
processObjectin classResultColumn- Parameters:
o- The object in need of some kind of processing before being set.- Returns:
- The processed object.
- Since:
- 2.1.5
- See Also:
DB2ResultColumn
-
-