All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.db.sql.statement.builder.Values Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
package com.scalar.db.sql.statement.builder;

import com.scalar.db.sql.Term;
import java.util.List;

public interface Values {

  /**
   * Sets values to insert or upsert.
   *
   * @param values values to insert or upsert
   * @return a builder object
   */
  T values(Term... values);

  /**
   * Sets values to insert or upsert.
   *
   * @param values values to insert or upsert
   * @return a builder object
   */
  T values(List values);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy