All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickzetta.client.jdbc.core.CZResult Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.clickzetta.client.jdbc.core;;

import java.util.List;

interface CZResult {
  boolean hasNext() throws Exception;
  List getNext();
}