1 /*2 * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).3 * Initial Developer: H2 Group4 */5 package org.h2.index;6 7 import java.sql.SQLException ;8 9 import org.h2.result.Row;10 11 12 public interface Cursor {13 14 int POS_NO_ROW = -1;15 16 Row get() throws SQLException ;17 int getPos();18 boolean next() throws SQLException ;19 20 }21