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

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

Introduction

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

Usage

From source file net.hydromatic.optiq.impl.StarTable.java

/**
 * Virtual table that is composed of two or more tables joined together.
 *
 * <p>Star tables do not occur in end-user queries. They are introduced by the
 * optimizer to help matching queries to materializations, and used only
 * during the planning process.</p>

From source file org.apache.calcite.schema.impl.StarTable.java

/**
 * Virtual table that is composed of two or more tables joined together.
 *
 * <p>Star tables do not occur in end-user queries. They are introduced by the
 * optimizer to help matching queries to materializations, and used only
 * during the planning process.</p>

From source file org.batoo.jpa.core.impl.jdbc.JoinTable.java

/**
 * 
 * 
 * @author hceylan
 * @since $version
 */

From source file org.batoo.jpa.jdbc.JoinTable.java

/**
 * 
 * 
 * @author hceylan
 * @since 2.0.0
 */

From source file org.batoo.jpa.core.impl.jdbc.CollectionTable.java

/**
 * The table for element collection attributes.
 * 
 * @author hceylan
 * @since $version
 */

From source file org.batoo.jpa.core.impl.jdbc.EntityTable.java

/**
 * Table representing an entity persistent storage.
 * 
 * @author hceylan
 * @since $version
 */

From source file org.batoo.jpa.jdbc.EntityTable.java

/**
 * Table representing an entity persistent storage.
 * 
 * @author hceylan
 * @since 2.0.0
 */

From source file org.batoo.jpa.jdbc.CollectionTable.java

/**
 * The table for element collection attributes.
 * 
 * @author hceylan
 * @since 2.0.0
 */

From source file co.cask.cdap.data2.dataset2.lib.table.BufferingTable.java

/**
 * An abstract {@link TransactionAware} implementation of {@link co.cask.cdap.api.dataset.table.Table} which
 * keeps data in memory buffer until transaction commits.
 * <p>
 * Subclasses should implement methods which deal with persistent store. This implementation merges data from persistent
 * store and in-memory buffer for read/write operations.