Uses of Interface
org.synchronoss.cpo.core.CpoWhere
Packages that use CpoWhere
Package
Description
-
Uses of CpoWhere in org.synchronoss.cpo.cassandra
Constructor parameters in org.synchronoss.cpo.cassandra with type arguments of type CpoWhereModifierConstructorDescriptionCassandraBoundStatementFactory(com.datastax.oss.driver.api.core.CqlSession sess, CassandraCpoAdapter cassandraCpoAdapter, CpoClass criteria, CpoFunction function, T bean, Collection<CpoWhere> wheres, Collection<CpoOrderBy> orderBy, Collection<CpoNativeFunction> nativeQueries) Used to build the CassandraBoundStatementthat CPO executes for a given CpoFunction. -
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. -
Uses of CpoWhere in org.synchronoss.cpo.jdbc
Classes in org.synchronoss.cpo.jdbc that implement CpoWhereModifier and TypeClassDescriptionclassJDBC implementation ofBindableCpoWhere, resolving a where clause attribute to its qualifiedtable.column(or bare column) name using the attribute'sJdbcCpoAttributemetadata.Methods in org.synchronoss.cpo.jdbc that return CpoWhereModifier and TypeMethodDescriptionJdbcCpoAdapter.newWhere()<T> CpoWhereJdbcCpoAdapter.newWhere(Logical logical, String attr, Comparison comp, T value) <T> CpoWhereJdbcCpoAdapter.newWhere(Logical logical, String attr, Comparison comp, T value, boolean not) Constructor parameters in org.synchronoss.cpo.jdbc with type arguments of type CpoWhereModifierConstructorDescriptionJdbcPreparedStatementFactory(Connection conn, JdbcCpoAdapter jca, CpoClass criteria, CpoFunction function, T bean, Collection<CpoWhere> wheres, Collection<CpoOrderBy> orderBy, Collection<CpoNativeFunction> nativeQueries) Used to build the PreparedStatement that is used by CPO to create the actual JDBC PreparedStatement. -
Uses of CpoWhere in org.synchronoss.cpo.jdbc.jta
Methods in org.synchronoss.cpo.jdbc.jta that return CpoWhere