Uses of Class
org.synchronoss.cpo.core.CpoWhereBuilder
Packages that use CpoWhereBuilder
-
Uses of CpoWhereBuilder in org.synchronoss.cpo.core
Methods in org.synchronoss.cpo.core that return CpoWhereBuilderModifier and TypeMethodDescription<T> CpoWhereBuilderCpoWhereBuilder.and(String attr, Comparison comp, T value) Adds a condition joined to the previous condition with AND.<T> CpoWhereBuilderCpoWhereBuilder.and(String attr, Comparison comp, T value, boolean not) Adds a condition joined to the previous condition with AND, optionally negated.CpoWhereBuilder.and(CpoWhereGroup group) Adds a nested group of conditions, joined to the previous condition with AND.CpoWhereBuilder.attributeFunction(String fn) Applies a native datastore function to the left-hand attribute of the condition just added.CpoWhereBuilder.compareToAttribute(String rightAttr) Compares the condition just added against another attribute instead of a literal value.static CpoWhereBuilderCpoWhereBuilder.create(CpoAdapter adapter) Creates a new CpoWhereBuilder.<T> CpoWhereBuilderCpoWhereBuilder.or(String attr, Comparison comp, T value) Adds a condition joined to the previous condition with OR.<T> CpoWhereBuilderCpoWhereBuilder.or(String attr, Comparison comp, T value, boolean not) Adds a condition joined to the previous condition with OR, optionally negated.CpoWhereBuilder.or(CpoWhereGroup group) Adds a nested group of conditions, joined to the previous condition with OR.CpoWhereBuilder.rightAttributeFunction(String fn) Applies a native datastore function to the right-hand attribute of the condition just added.CpoWhereBuilder.staticValue(String literal) Sets a literal, unescaped value on the condition just added, in place of a bound value.CpoWhereBuilder.valueFunction(String fn) Applies a native datastore function to the comparison value of the condition just added.<T> CpoWhereBuilderCpoWhereBuilder.where(String attr, Comparison comp, T value) Starts the chain with a comparison of the named attribute to a value.<T> CpoWhereBuilderCpoWhereBuilder.where(String attr, Comparison comp, T value, boolean not) Starts the chain with a comparison of the named attribute to a value, optionally negated.default CpoWhereBuilderCpoAdapter.whereBuilder()Starts a fluentCpoWhereBuilderchain for assembling aCpoWheretree, including nested AND/OR groups, without hand-placingLogicaloperators.Methods in org.synchronoss.cpo.core with parameters of type CpoWhereBuilderModifier and TypeMethodDescriptionvoidCpoWhereGroup.build(CpoWhereBuilder group) Populates the nested group's conditions using the given builder.