Package org.apache.pivot.sql
Class ResultList.Field
- java.lang.Object
-
- org.apache.pivot.sql.ResultList.Field
-
- Enclosing class:
- ResultList
public static final class ResultList.Field extends java.lang.Object
Class that maps a result set column to a map key/value pair.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
columnName
The source column name.java.lang.String
key
The name of the map key.java.lang.Class<?>
type
The type of the map value.
-
-
-
Field Detail
-
columnName
public final java.lang.String columnName
The source column name.
-
key
public final java.lang.String key
The name of the map key. Ifnull
, the column name will be used.
-
type
public final java.lang.Class<?> type
The type of the map value. Ifnull
, the default SQL type will be used.
-
-