Uses of Interface
org.sql.generation.api.grammar.modification.UpdateSource

Packages that use UpdateSource
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
org.sql.generation.api.grammar.modification This package contains syntax elements relevant to SQL modification clauses (INSERT INTO, DELETE FROM, and UPDATE). 
 

Uses of UpdateSource in org.sql.generation.api.grammar.factories
 

Methods in org.sql.generation.api.grammar.factories with parameters of type UpdateSource
 SetClause ModificationFactory.setClause(String updateTarget, UpdateSource updateSource)
          Creates a new set clause for UPDATE statement.
 

Uses of UpdateSource in org.sql.generation.api.grammar.modification
 

Subinterfaces of UpdateSource in org.sql.generation.api.grammar.modification
 interface UpdateSourceByExpression
          This syntax element represents the update source having value of whatever expression it holds.
 

Classes in org.sql.generation.api.grammar.modification that implement UpdateSource
static class UpdateSource.Default
          This syntax element represents the DEFAULT keyword as data source for column, meaning to use the default value for the column.
static class UpdateSource.Null
          This syntax element represents the NULL keyword as data source for column, meaning to use the NULL value for the column.
 

Methods in org.sql.generation.api.grammar.modification that return UpdateSource
 UpdateSource SetClause.getUpdateSource()
          Returns the update source, that is, data, for the columns.
 

Methods in org.sql.generation.api.grammar.modification that return types with arguments of type UpdateSource
 Class<? extends UpdateSource> UpdateSource.Default.getImplementedType()
          Returns UpdateSource.Default.
 Class<? extends UpdateSource> UpdateSource.Null.getImplementedType()
          Returns UpdateSource.Null.
 



Copyright © 2010-2012. All Rights Reserved.