Interface UpdateClause<C extends UpdateClause<C>>

Type Parameters:
C - concrete subtype
All Superinterfaces:
DMLClause<C>, FilteredClause<C>, StoreClause<C>

public interface UpdateClause<C extends UpdateClause<C>> extends StoreClause<C>, FilteredClause<C>
UpdateClause defines a generic extensible interface for Update clauses
Author:
tiwe
  • Method Summary

    Modifier and Type
    Method
    Description
    set(List<? extends Path<?>> paths, List<?> values)
    Set the paths to be updated

    Methods inherited from interface com.querydsl.core.dml.DMLClause

    execute

    Methods inherited from interface com.querydsl.core.FilteredClause

    where

    Methods inherited from interface com.querydsl.core.dml.StoreClause

    isEmpty, set, set, setNull
  • Method Details

    • set

      C set(List<? extends Path<?>> paths, List<?> values)
      Set the paths to be updated
      Parameters:
      paths - paths to be updated
      values - values to be set
      Returns:
      the current object