Uses of Interface
com.hades.builder.sqlCommand.clauseBuilder.filter.SQLFilterClause
Packages that use SQLFilterClause
Package
Description
-
Uses of SQLFilterClause in com.hades.builder.sqlCommand.clauseBuilder
Methods in com.hades.builder.sqlCommand.clauseBuilder that return SQLFilterClauseMethods in com.hades.builder.sqlCommand.clauseBuilder with parameters of type SQLFilterClauseModifier and TypeMethodDescriptionvoidClauseBuilder.setFilterClause(SQLFilterClause<E> filterClause) Constructors in com.hades.builder.sqlCommand.clauseBuilder with parameters of type SQLFilterClauseModifierConstructorDescriptionClauseBuilder(SQLFilterClause<E> filterClause, SQLJoinClause<E> joinClause, SQLOrderClause<E> orderClause) -
Uses of SQLFilterClause in com.hades.builder.sqlCommand.clauseBuilder.filter
Classes in com.hades.builder.sqlCommand.clauseBuilder.filter that implement SQLFilterClauseModifier and TypeClassDescriptionclassFilterClause<E extends EntityType>there is 2 way to create an object ofFilterClausecreate object with constructor ->FilterClause(Class)in which developer must passClassobject of entity type create Object with constructor ->FilterClause()()} in which developer must createClassinstance by callingFilterClause.createInstance(EntityType)Methods in com.hades.builder.sqlCommand.clauseBuilder.filter that return SQLFilterClauseModifier and TypeMethodDescriptionSQLFilterClause.and()to append `and` key word in where clauseto append `and` key word and let some filter to be run in parenthesesSQLFilterClause.createInstance(E e) create instanceClassof given entity to be used in filter clausesFilterClause.customClause(String customClause) SQLFilterClause.customClause(String customClause) any customized filter that is not supported by mainSQLFilterClausecan be specifies by this functionequal operand in standard query language main purpose is to set equality operand between given field and filterPhraseequal operand in standard query language main purpose is to set equality operand between given field and filterPhraseexists operand in standard languageIn operand in standard languageIn operand in standard languageFilterClause.innerSelect()SQLFilterClause.innerSelect()like operand in standard query language to generate like phrase in between given fieldsFilterClause.not()SQLFilterClause.not()to append `not` key word in where clauseto append `not` key word and let some filter to be run in parenthesesequal operand in standard query language main purpose is to set equality operand between given field and filterPhrasenot equal operand in standard query language main purpose is to set not equality operand between given field and filterPhrasenot exists operand in standard languagenotIn operand in standard languagenotIn operand in standard languageSQLFilterClause.or()to append `or` key word in where clauseto append `or` key word and let some filter to be run in parentheses -
Uses of SQLFilterClause in com.hades.builder.sqlCommand.clauseBuilder.join
Methods in com.hades.builder.sqlCommand.clauseBuilder.join with parameters of type SQLFilterClauseModifier and TypeMethodDescriptionJoinClause.join(Class<? extends EntityType> referencedClass, String entityKey, String referencedKey, JoinTypes joinTypes, SQLFilterClause<E> filterClause) SQLJoinClause.join(Class<? extends EntityType> referencedClass, String entityKey, String referencedKey, JoinTypes joinTypes, SQLFilterClause<E> filterClause) create join clause with passed referenced class.