Example usage for com.google.common.collect Table subclass-usage

List of usage examples for com.google.common.collect Table subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect Table subclass-usage.

Usage

From source file com.ebay.pulsar.analytics.datasource.PulsarTable.java

/**
 * 
 * @author mingmwang
 *
 */
public class PulsarTable extends Table {

From source file qa.qcri.nadeef.core.datamodel.MemoryTable.java

/**
 * MemoryTable represents a table which resides in memory.
 */
public class MemoryTable extends Table {
    private List<Tuple> tuples;

From source file org.caleydo.core.data.collection.table.CategoricalTable.java

/**
 * Extension of {@link Table} to add functionality specific to homogeneous categorical tables, such as a joint set of
 * categories or a joint order of categories.
 *
 * @author Alexander Lex
 */

From source file com.cloudera.impala.catalog.IncompleteTable.java

/**
 * Represents a table with incomplete metadata. The metadata may be incomplete because
 * it has not yet been loaded or because of errors encountered during the loading
 * process.
 */
public class IncompleteTable extends Table {

From source file org.apache.impala.catalog.IncompleteTable.java

/**
 * Represents a table with incomplete metadata. The metadata may be incomplete because
 * it has not yet been loaded or because of errors encountered during the loading
 * process.
 */
public class IncompleteTable extends Table {

From source file com.github.explainable.sql.table.TempTable.java

/**
 * Class that represents a temporary table that exists only during the execution of a single query.
 * For instance, the query {@code SELECT sid FROM (SELECT sid FROM Sailors) AS Temp} uses a
 * temporary table {@code Temp} with alias {@code Temp} and body {@code SELECT sid FROM Sailors}.
 */
public final class TempTable extends Table {

From source file com.github.explainable.sql.table.BaseTable.java

/**
 * Class that represents a single instance of a base table (i.e., a table that is stored by the DBMS
 * and is visible in the database schema.) Two instances of the same table can appear in the same
 * query; in this case, we will define two separate base tables. This will happen, e.g., for the
 * query {@code SELECT * FROM Table AS T1, Table AS T2}. If two columns reference the same table
 * instance, as in {@code SELECT X, Y FROM Table}, then only one BaseTable object will be created.

From source file qa.qcri.nadeef.core.datamodel.SQLTable.java

/**
 * SQLTable represents a {@link Table} which resides in a database.
 */
public class SQLTable extends Table {
    private static Tracer tracer = Tracer.getTracer(SQLTable.class);

From source file org.caleydo.core.data.collection.table.NumericalTable.java

/**
 * Extension of {@link Table} to add functionality specific to homogeneous numerical tables, such as a joint
 * normalization, a joint maximum, etc.
 *
 * @author Alexander Lex
 */