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

com.querydsl.core.dml.ReactiveUpdateClause Maven / Gradle / Ivy

The newest version!
package com.querydsl.core.dml;

import com.querydsl.core.types.Path;
import java.util.List;

/**
 * {@code ReactiveUpdateClause} defines a generic extensible interface for Update clauses
 *
 * @param  concrete subtype
 */
public interface ReactiveUpdateClause>
    extends ReactiveStoreClause, ReactiveFilteredClause {

  /**
   * Set the paths to be updated
   *
   * @param paths paths to be updated
   * @param values values to be set
   * @return the current object
   */
  C set(List> paths, List values);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy