Uses of Interface
org.synchronoss.cpo.core.CpoWhere
Packages that use CpoWhere
-
Uses of CpoWhere in org.synchronoss.cpo.core
Classes in org.synchronoss.cpo.core that implement CpoWhereModifier and TypeClassDescriptionclassDefaultCpoWhereimplementation: a bindable where-clause node that is also aNode, allowing leaf comparisons to be chained into branches viaBindableCpoWhere.addWhere(CpoWhere)and rendered to native SQL/CQL text viaBindableCpoWhere.toString(CpoClass).Methods in org.synchronoss.cpo.core that return CpoWhereModifier and TypeMethodDescriptionCpoAdapter.newWhere()Creates an empty CpoWhere.<T> CpoWhereCpoAdapter.newWhere(Logical logical, String attr, Comparison comp, T value) Creates a CpoWhere comparing the attribute to the value.<T> CpoWhereCpoAdapter.newWhere(Logical logical, String attr, Comparison comp, T value, boolean not) Creates a CpoWhere comparing the attribute to the value, optionally negated.CpoBaseAdapter.newWhere()<T> CpoWhereCpoBaseAdapter.newWhere(Logical logical, String attr, Comparison comp, T value) <T> CpoWhereCpoBaseAdapter.newWhere(Logical logical, String attr, Comparison comp, T value, boolean not) Methods in org.synchronoss.cpo.core that return types with arguments of type CpoWhereModifier and TypeMethodDescriptionCpoQuery.wheres()Returns the value of thewheresrecord component.Methods in org.synchronoss.cpo.core with parameters of type CpoWhereModifier and TypeMethodDescriptionvoidChains another where clause onto this one, joined by this instance'sLogicaloperator, turning this instance into a branch node.voidChains another where clause onto this one, joined by this instance'sLogicaloperator, turning this instance into a branch node.Adds a where constraint.Method parameters in org.synchronoss.cpo.core with type arguments of type CpoWhereModifier and TypeMethodDescriptionCpoQuery.wheres(Collection<CpoWhere> wheres) Adds a collection of where constraints.Constructor parameters in org.synchronoss.cpo.core with type arguments of type CpoWhereModifierConstructorDescriptionCpoQuery(String groupName, List<CpoWhere> wheres, List<CpoOrderBy> orderBys, List<CpoNativeFunction> nativeExpressions) Creates an instance of aCpoQueryrecord class.