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 TypeInterfaceDescriptioninterface
This interface represents a component used in query construction to define conditions for filtering data.interface
This interface represents a component used in query construction to define joins between different parts of a query.interface
This 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 TypeClassDescriptionclass
This class represents a condition in a query that compares a field with a specified value using a given operator.class
This class represents a query component that represents a field name, typically used in queries and expressions.class
This class represents a query component that defines common keywords used in query construction.class
This class represents a query component that encapsulates an object for inclusion in a query.class
This class represents a query component that defines common operators used in query conditions.class
This class represents a condition in a query expressed as a string.class
This class represents a return value or selection criteria in a query expressed as a string.class
This 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 QueryComponent
Keyword.AND
Represents the AND keyword.static final QueryComponent
Keyword.COMMA
Represents the comma keyword.static final QueryComponent
Keyword.FROM
Represents the FROM keyword.static final QueryComponent
Keyword.INSERT
Represents the INSERT keyword.static final QueryComponent
Keyword.INTO
Represents the INTO keyword.static final QueryComponent
Keyword.LEFT_JOIN
Represents the LEFT JOIN keyword.static final QueryComponent
Keyword.LEFT_PARENTHESES
Represents the left parentheses keyword.static final QueryComponent
Keyword.OR
Represents the OR keyword.static final QueryComponent
Keyword.RIGHT_JOIN
Represents the RIGHT JOIN keyword.static final QueryComponent
Keyword.RIGHT_PARENTHESES
Represents the right parentheses keyword.static final QueryComponent
Keyword.SELECT
Represents the SELECT keyword.static final QueryComponent
Keyword.SEMICOLON
Represents the semicolon keyword.static final QueryComponent
Keyword.VALUES
Represents the VALUES keyword.static final QueryComponent
Keyword.VARIABLE
Represents the variable keyword.static final QueryComponent
Keyword.WHERE
Represents 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.