weka.experiment.InstanceQueryAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-stable Show documentation
Show all versions of weka-stable Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This is the stable version. Apart from bugfixes, this version
does not receive any other updates.
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/*
* InstanceQueryAdapter.java
* Copyright (C) 2011-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.experiment;
/**
* An interface implemented by InstanceQuery and any user class that is
* to be passed as the first argument to
* InstanceQuery.retrieveInstances(InstanceQueryAdapter, ResultSet).
*
* @author Wes Munsil ([email protected])
* @version $Revision: 8034 $
*/
public interface InstanceQueryAdapter
{
/**
* returns key column headings in their original case. Used for
* those databases that create uppercase column names.
*
* @param columnName the column to retrieve the original case for
* @return the original case
*/
public String attributeCaseFix(String columnName);
/**
* Gets whether there should be printed some debugging output to stderr or not.
*
* @return true if output should be printed
*/
public boolean getDebug();
/**
* Gets whether data is to be returned as a set of sparse instances
* @return true if data is to be encoded as sparse instances
*/
public boolean getSparseData();
/**
* translates the column data type string to an integer value that indicates
* which data type / get()-Method to use in order to retrieve values from the
* database (see DatabaseUtils.Properties, InstanceQuery()). Blanks in the type
* are replaced with underscores "_", since Java property names can't contain blanks.
*
* @param type the column type as retrieved with
* java.sql.MetaData.getColumnTypeName(int)
* @return an integer value that indicates
* which data type / get()-Method to use in order to
* retrieve values from the
*/
public int translateDBColumnType(String type);
}