Uses of Interface
com.jk.data.dynamic.query.QueryComponent
Packages that use QueryComponent
-
Uses of QueryComponent in com.jk.data.dynamic.query
Subinterfaces of QueryComponent in com.jk.data.dynamic.queryModifier and TypeInterfaceDescriptioninterfaceThis interface represents a component used in query construction to define conditions for filtering data.interfaceThis interface represents a component used in query construction to define joins between different parts of a query.interfaceThis interface represents a query component used in query construction to specify the return value or selection criteria in a query.Classes in com.jk.data.dynamic.query that implement QueryComponentModifier and TypeClassDescriptionclassThis class represents a condition in a query that compares a field with a specified value using a given operator.classThis class represents a query component that represents a field name, typically used in queries and expressions.classThis class represents a query component that defines common keywords used in query construction.classThis class represents a query component that encapsulates an object for inclusion in a query.classThis class represents a query component that defines common operators used in query conditions.classThis class represents a condition in a query expressed as a string.classThis class represents a return value or selection criteria in a query expressed as a string.classThis class represents a query component that defines the name of a table to be used in queries.Fields in com.jk.data.dynamic.query declared as QueryComponentModifier and TypeFieldDescriptionstatic final QueryComponentKeyword.ANDRepresents the AND keyword.static final QueryComponentKeyword.COMMARepresents the comma keyword.static final QueryComponentKeyword.FROMRepresents the FROM keyword.static final QueryComponentKeyword.INSERTRepresents the INSERT keyword.static final QueryComponentKeyword.INTORepresents the INTO keyword.static final QueryComponentKeyword.LEFT_JOINRepresents the LEFT JOIN keyword.static final QueryComponentKeyword.LEFT_PARENTHESESRepresents the left parentheses keyword.static final QueryComponentKeyword.ORRepresents the OR keyword.static final QueryComponentKeyword.RIGHT_JOINRepresents the RIGHT JOIN keyword.static final QueryComponentKeyword.RIGHT_PARENTHESESRepresents the right parentheses keyword.static final QueryComponentKeyword.SELECTRepresents the SELECT keyword.static final QueryComponentKeyword.SEMICOLONRepresents the semicolon keyword.static final QueryComponentKeyword.VALUESRepresents the VALUES keyword.static final QueryComponentKeyword.VARIABLERepresents the variable keyword.static final QueryComponentKeyword.WHERERepresents the WHERE keyword.Methods in com.jk.data.dynamic.query with parameters of type QueryComponentModifier and TypeMethodDescriptionQuery.addComponent(QueryComponent component) This method adds a query component to the query structure.Query.addComponent(QueryComponent component, int count, QueryComponent separator, boolean surroundWithParenchthisis) This method adds multiple copies of a query component to the query structure, separated by a specified separator, and optionally surrounded by parentheses.Query.addComponents(List<QueryComponent> components, QueryComponent separator, boolean surroundWithParenchthisis) This method adds a list of query components to the query structure, separated by a specified separator, and optionally surrounded by parentheses.Query.addValues(List<Object> values, QueryComponent separator, boolean surroundWithParenchthisis) This method adds a list of values to the query structure as query components, separated by a specified separator, and optionally surrounded by parentheses.Method parameters in com.jk.data.dynamic.query with type arguments of type QueryComponentModifier and TypeMethodDescriptionQuery.addComponents(List<QueryComponent> components, QueryComponent separator, boolean surroundWithParenchthisis) This method adds a list of query components to the query structure, separated by a specified separator, and optionally surrounded by parentheses.