com.github.taymindis.paas.QueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsp-paas Show documentation
Show all versions of jsp-paas Show documentation
Page as a service for JSP to standardize the function by jsp page, guarantee zero downtime
The newest version!
package com.github.taymindis.paas;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class QueryResult {
private final Map> vMap;
private int index = -1;
private final int size;
public QueryResult(Map> vMap, int totalSize) {
this.vMap = vMap;
this.size = totalSize;
}
public Object get(String colName) {
return vMap.get(colName).get(index);
}
/**
* @return first column value
*/
public Object get() {
List