1 16 17 package org.pentaho.core.connection; 18 19 25 public interface IPentahoMetaData { 26 27 35 public Object [][] getColumnHeaders(); 36 37 44 public Object [][] getRowHeaders(); 45 46 56 public int getColumnIndex(String value); 57 58 68 public int getColumnIndex(String [] values); 69 70 80 public int getRowIndex(String value); 81 82 91 public int getRowIndex(String [] values); 92 93 96 public int getColumnCount(); 97 } 98 | Popular Tags |