WebObjects 5.2.3

Uses of Class
com.webobjects.eocontrol.EOQualifier

Packages that use EOQualifier
com.webobjects.appserver Provides the WebObjects application server, session management classes, component classes, and classes to manage the request-response loop. 
com.webobjects.directtoweb Provides the framework for rapid development of HTML-based WebObjects applications. 
com.webobjects.eoaccess Provides the data access mechanisms for the Enterprise Objects technology. 
com.webobjects.eoapplication Provides application logic utility classes to the client side of Java Client applications. 
com.webobjects.eocontrol Provides infrastructure for creating and manging enterprise objects. 
com.webobjects.eodistribution.client Provides the communication mechanism between the client and server components of Java Client applications. 
com.webobjects.eogeneration Provides infrastructure for dynamically generating complete user interfaces in Java Client applications from XML descriptions of controller hierarchies. 
com.webobjects.eointerface Provides the infrastructure to display data for the control layer in a desktop application's user interface. 
com.webobjects.jdbcadaptor Provides an implementation of an Enterprise Objects adaptor for JDBC data sources. 
com.webobjects.jndiadaptor Provides an implementation of an Enterprise Objects Frameworks adaptor for JNDI data sources. 
com.webobjects.webservices.generation   
 

Uses of EOQualifier in com.webobjects.appserver
 

Methods in com.webobjects.appserver that return EOQualifier
 EOQualifier WODisplayGroup.qualifier()
          Provides the last qualifier given to the WODisplayGroup via setQualifier or qualifyDisplayGroup.
 EOQualifier WODisplayGroup.qualifierFromQueryValues()
          Builds a qualifier constructed from entries in these query dictionaries: queryMatch, queryMax, queryMin, and queryOperator.
 

Methods in com.webobjects.appserver with parameters of type EOQualifier
 void WODisplayGroup.setQualifier(EOQualifier qualifier)
          Changes the EOQualifier used by the WODisplayGroup to filter its displayedObjects.
 

Uses of EOQualifier in com.webobjects.directtoweb
 

Subclasses of EOQualifier in com.webobjects.directtoweb
 class BooleanQualifier
           
 class NonNullQualifier
           
 

Fields in com.webobjects.directtoweb declared as EOQualifier
static EOQualifier ServerSideSettings.dummyTrueQualifier
           
static EOQualifier ServerSideSettings.frameQualifier
           
 

Methods in com.webobjects.directtoweb that return EOQualifier
 EOQualifier Rule.lhs()
          Gets the left-hand side.
 EOQualifier NonNullQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
           
 EOQualifier D2WQueryPage.qualifier()
          Gets the qualifier from query values of the display group.
 EOQualifier BooleanQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
           
 

Methods in com.webobjects.directtoweb with parameters of type EOQualifier
 void Rule.setLhs(EOQualifier newValue)
          Sets the left-hand side to the specified value.
 

Constructors in com.webobjects.directtoweb with parameters of type EOQualifier
Rule(int author, EOQualifier lhs, Assignment rhs)
          Creates an instance of Rule with the specified author, left-hand side, and right-hand side.
 

Uses of EOQualifier in com.webobjects.eoaccess
 

Subclasses of EOQualifier in com.webobjects.eoaccess
 class EOSQLQualifier
          Deprecated. The class EOSQLQualifier is deprecated. Use EOAdaptorChannel.evaluateExpression() or EOFetchSpecification.setHints() instead.
 

Methods in com.webobjects.eoaccess that return EOQualifier
static EOQualifier EOUtilities.qualifierForEnterpriseObject(EOEditingContext ec, EOEnterpriseObject object)
          Returns an EOQualifier for the specified Enterprise Object.
 EOQualifier EOSQLQualifier.qualifierMigratedFromEntityRelationshipPath(EOEntity entity, String relationshipPath)
          Deprecated.  
 EOQualifier EOSQLQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Deprecated.  
 EOQualifier EOSQLQualifier.schemaBasedQualifierWithRootEntity(EOEntity entity)
          Deprecated.  
 EOQualifier EORelationship.qualifierWithSourceRow(NSDictionary sourceRow)
          Returns a qualifier that can be used to fetch the destination of the receiving relationship given sourceRow.
 EOQualifier EOQualifierSQLGeneration.qualifierMigratedFromEntityRelationshipPath(EOEntity entity, String relationshipPath)
          Creates a new EOQualifier by moving the qualifier from the source entity to the destination of the relationship path.
 EOQualifier EOQualifierSQLGeneration.schemaBasedQualifierWithRootEntity(EOEntity entity)
          Returns an equivalent EOQualifier with object references replaced by foreign key references.
abstract  EOQualifier EOQualifierSQLGeneration.Support.qualifierMigratedFromEntityRelationshipPath(EOQualifier qualifier, EOEntity entity, String relationshipPath)
          Creates a new version of qualifier, translates all the keys to work with the entity specified in relationshipPath.
abstract  EOQualifier EOQualifierSQLGeneration.Support.schemaBasedQualifierWithRootEntity(EOQualifier qualifier, EOEntity entity)
          Returns an EOQualifier that is translated so that it is based on the foreign keys of the entity.
 EOQualifier EOEntity.qualifierForPrimaryKey(NSDictionary row)
          Returns a qualifier for the receiver that can be used to fetch an instance of the receiver with the primary key extracted from row.
 EOQualifier EOEntity.restrictingQualifier()
          Returns the qualifier used to restrict all queries made against the receiver.
 EOQualifier EOEntity.schemaBasedQualifier(EOQualifier qualifier)
          Returns an SQL qualifier based on qualifier that is suitable for evaluation by a database (as opposed to in-memory evaluation).
 EOQualifier EODatabaseDataSource.auxiliaryQualifier()
          Returns the auxiliary EOQualifier used to further restrict the fetch criteria defined by the receiver's EOFetchSpecification.
 EOQualifier EOAdaptorOperation.qualifier()
          Returns the EOQualifier that identifies the specific row to which the adaptor operation applies.
 

Methods in com.webobjects.eoaccess with parameters of type EOQualifier
 EOSQLExpression EOSQLExpressionFactory.deleteStatementWithQualifier(EOQualifier qualifier, EOEntity entity)
          Creates and returns an SQL DELETE expression to delete the rows described by qualifier.
 EOSQLExpression EOSQLExpressionFactory.updateStatementForRow(NSDictionary row, EOQualifier qualifier, EOEntity entity)
          Creates and returns an SQL UPDATE expression to update the row identified by qualifier with the values in row.
 String EOSQLExpression.assembleDeleteStatementWithQualifier(EOQualifier qualifier, String tableList, String whereClause)
          This method is invoked from prepareDeleteExpressionForQualifier to return an SQL DELETE statement.
 String EOSQLExpression.assembleSelectStatementWithAttributes(NSArray attributes, boolean lock, EOQualifier qualifier, NSArray fetchOrder, String selectString, String columnList, String tableList, String whereClause, String joinClause, String orderByClause, String lockClause)
          This method is invoked from prepareSelectExpressionWithAttributes to return an SQL SELECT statement.
 String EOSQLExpression.assembleUpdateStatementWithRow(NSDictionary row, EOQualifier qualifier, String tableList, String updateList, String whereClause)
          This method is invoked from prepareUpdateExpressionWithRow to return an SQL UPDATE statement.
 void EOSQLExpression.prepareDeleteExpressionForQualifier(EOQualifier qualifier)
          Generates a DELETE statement.
 void EOSQLExpression.prepareUpdateExpressionWithRow(NSDictionary row, EOQualifier qualifier)
          Generates an UPDATE statement.
 String EOSQLExpression.sqlStringForNegatedQualifier(EOQualifier qualifier)
          Creates and returns a SQL string that is the result of surrounding the SQL string for qualifier in parentheses and appending it to the word "not".
abstract  EOQualifier EOQualifierSQLGeneration.Support.qualifierMigratedFromEntityRelationshipPath(EOQualifier qualifier, EOEntity entity, String relationshipPath)
          Creates a new version of qualifier, translates all the keys to work with the entity specified in relationshipPath.
abstract  EOQualifier EOQualifierSQLGeneration.Support.schemaBasedQualifierWithRootEntity(EOQualifier qualifier, EOEntity entity)
          Returns an EOQualifier that is translated so that it is based on the foreign keys of the entity.
abstract  String EOQualifierSQLGeneration.Support.sqlStringForSQLExpression(EOQualifier qualifier, EOSQLExpression sqlExpression)
          Returns the SQL String for the qualifier within the context of sqlExpression.
 boolean EOEntity.isQualifierForPrimaryKey(EOQualifier qualifier)
          Returns true if qualifier describes the primary key and nothing but the primary key, false otherwise.
 EOQualifier EOEntity.schemaBasedQualifier(EOQualifier qualifier)
          Returns an SQL qualifier based on qualifier that is suitable for evaluation by a database (as opposed to in-memory evaluation).
 void EOEntity.setRestrictingQualifier(EOQualifier qualifier)
          Assigns qualifier as the qualifier used to restrict all queries made against the receiver.
 void EODatabaseDataSource.setAuxiliaryQualifier(EOQualifier newQualifier)
          Sets the auxiliary qualifier to newQualifier.
 void EOAdaptorOperation.setQualifier(EOQualifier qualifier)
          Sets the EOQualifier that identifies the row to which the adaptor operation will be applied.
 void EOAdaptorChannel.deleteRowDescribedByQualifier(EOQualifier qualifier, EOEntity entity)
          Deletes the row described by qualifier from the database table corresponding to entity.
abstract  int EOAdaptorChannel.deleteRowsDescribedByQualifier(EOQualifier qualifier, EOEntity entity)
          An abstract method that should be implemented by subclasses to delete the rows described by qualifier from the database table corresponding to entity.
 void EOAdaptorChannel.lockRowComparingAttributes(NSArray atts, EOEntity entity, EOQualifier qualifier, NSDictionary snapshot)
          Attempts to lock a row in the database by selecting it with locking on.
 void EOAdaptorChannel.updateValuesInRowDescribedByQualifier(NSDictionary row, EOQualifier qualifier, EOEntity entity)
          Updates the row described by qualifier with the new values in row.
abstract  int EOAdaptorChannel.updateValuesInRowsDescribedByQualifier(NSDictionary row, EOQualifier qualifier, EOEntity entity)
          An abstract method that should be implemented by subclasses to update the rows described by qualifier with the values in row.
 

Uses of EOQualifier in com.webobjects.eoapplication
 

Methods in com.webobjects.eoapplication with parameters of type EOQualifier
abstract  void EODataSourceFactory.setAuxilaryQualifierOnDataSource(EODataSource dataSource, EOQualifier qualifier)
          
 

Uses of EOQualifier in com.webobjects.eocontrol
 

Subclasses of EOQualifier in com.webobjects.eocontrol
 class EOKeyComparisonQualifier
          EOKeyComparisonQualifier is a subclass of EOQualifier that compares a named property of an object with a named value of another object.
 class EOKeyValueQualifier
          EOKeyValueQualifier is a subclass of EOQualifier that compares a named property of an object with a supplied value, for example, "salary > 1500".
 class EONotQualifier
          EONotQualifier is a subclass of EOQualifier that contains a single qualifier.
 class EOOrQualifier
          EOOrQualifier is a subclass of EOQualifier that contains multiple qualifiers.
 

Methods in com.webobjects.eocontrol that return EOQualifier
static EOQualifier EOQualifier.qualifierToMatchAllValues(NSDictionary values)
          Takes a dictionary of search criteria, from which the method creates EOKeyValueQualifiers (one for each dictionary entry).
static EOQualifier EOQualifier.qualifierToMatchAnyValue(NSDictionary values)
          Takes a dictionary of search criteria, from which the method creates EOKeyValueQualifiers (one for each dictionary entry).
abstract  EOQualifier EOQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Returns a new qualifier substituting all variables with values found in bindings.
static EOQualifier EOQualifier.qualifierWithQualifierFormat(String format, NSArray arguments)
          Parses the format string format and the specified arguments, uses them to create an EOQualifier, and returns the EOQualifier.
 EOQualifier EOOrQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Returns a qualifier with the values associated by the bindings.
 EOQualifier EONotQualifier.qualifier()
           
 EOQualifier EONotQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Returns a new qualifier substituting all variables with values found in bindings.
 EOQualifier EOKeyValueQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Implements the abstract version of this method defined in EOQualfier.
 EOQualifier EOKeyComparisonQualifier.qualifierWithBindings(NSDictionary bindings, boolean requiresAll)
          Overriding EOQualifier's behavior.
 EOQualifier EOFetchSpecification.qualifier()
          Returns the EOQualifier that indicates which records or objects the receiver is to fetch.
 

Methods in com.webobjects.eocontrol with parameters of type EOQualifier
 void EOQualifierVisitor.visitUnknownQualifier(EOQualifier q)
           
static void EOQualifier.filterArrayWithQualifier(NSMutableArray array, EOQualifier qualifier)
          Filters array in place so that it contains only objects matching qualifier.
static NSArray EOQualifier.filteredArrayWithQualifier(NSArray array, EOQualifier qualifier)
          Returns a new array that contains only the array from objects matching qualifier.
 void EOFetchSpecification.setQualifier(EOQualifier qualifier)
          Sets this fetch specification's qualifier to qualifier.
 

Constructors in com.webobjects.eocontrol with parameters of type EOQualifier
EONotQualifier(EOQualifier qualifier)
          Creates and returns a new EONotQualifier.
EOFetchSpecification(String entityName, EOQualifier qualifier, NSArray sortOrderings, boolean usesDistinct, boolean isDeep, NSDictionary hints)
          Creates a new EOFetchSpecification with the arguments specified.
EOFetchSpecification(String entityName, EOQualifier qualifier, NSArray sortOrderings)
          Creates a new EOFetchSpecification with the arguments specified.
 

Uses of EOQualifier in com.webobjects.eodistribution.client
 

Methods in com.webobjects.eodistribution.client with parameters of type EOQualifier
 void EODistributedDataSource.setAuxiliaryQualifier(EOQualifier qualifier)
          Assigns qualifier as an auxiliary qualifier to the receiver's fetch specification.
 

Uses of EOQualifier in com.webobjects.eogeneration
 

Methods in com.webobjects.eogeneration that return EOQualifier
 EOQualifier EOQueryController.qualifier()
           
 

Uses of EOQualifier in com.webobjects.eointerface
 

Methods in com.webobjects.eointerface that return EOQualifier
 EOQualifier EODisplayGroup.qualifier()
          Returns the receiver's qualifier, which it uses to filter its array of objects for display when the delegate doesn't do so itself.
 EOQualifier EODisplayGroup.qualifierFromQueryValues()
          Builds a qualifier constructed from entries in the three query dictionaries: equalTo, greaterThan, and lessThan.
 

Methods in com.webobjects.eointerface with parameters of type EOQualifier
 void EODisplayGroup.setQualifier(EOQualifier qualifier)
          Sets the receiver's qualifier to qualifier.
 

Uses of EOQualifier in com.webobjects.jdbcadaptor
 

Methods in com.webobjects.jdbcadaptor with parameters of type EOQualifier
 String SybasePlugIn.SybaseExpression.assembleSelectStatementWithAttributes(NSArray attributes, boolean lock, EOQualifier qualifier, NSArray fetchOrder, String selectString, String columnList, String tableList, String whereClause, String joinClause, String orderByClause, String lockClause)
           
 String OraclePlugIn.OracleExpression.assembleUpdateStatementWithRow(NSDictionary row, EOQualifier qualifier, String tableList, String updateList, String whereClause)
           
 String OpenBasePlugIn.OpenBaseExpression.assembleSelectStatementWithAttributes(NSArray attributes, boolean lock, EOQualifier qualifier, NSArray fetchOrder, String selectString, String columnList, String tableList, String whereClause, String joinClause, String orderByClause, String lockClause)
           
 String MicrosoftPlugIn.MicrosoftExpression.assembleSelectStatementWithAttributes(NSArray attributes, boolean lock, EOQualifier qualifier, NSArray fetchOrder, String selectString, String columnList, String tableList, String whereClause, String joinClause, String orderByClause, String lockClause)
           
 int JDBCChannel.deleteRowsDescribedByQualifier(EOQualifier qualifier, EOEntity entity)
           
 int JDBCChannel.updateValuesInRowsDescribedByQualifier(NSDictionary row, EOQualifier qualifier, EOEntity entity)
           
 

Uses of EOQualifier in com.webobjects.jndiadaptor
 

Methods in com.webobjects.jndiadaptor with parameters of type EOQualifier
 int JNDIChannel.deleteRowsDescribedByQualifier(EOQualifier qualifier, EOEntity entity)
           
 int JNDIChannel.updateValuesInRowsDescribedByQualifier(NSDictionary row, EOQualifier qualifier, EOEntity entity)
           
 

Uses of EOQualifier in com.webobjects.webservices.generation
 

Methods in com.webobjects.webservices.generation that return EOQualifier
static EOQualifier WOServiceUtilities.buildQualifier(EOEntity entity, NSArray attributeNames, NSArray values, NSArray comparisonKeys, NSArray attributeClassNames, String unspecifiedArgumentKey)
          Returns an EOQualifier built to fetch objects where for each attribute name in attributeNames a qualifier, based on the corresponding value from values and comparison key from comparisonKeys, is added to an EOAndQualifier.
 EOQualifier WOSearchOperation.qualifier(EOEntity entity, NSArray inputPartKeyPaths, NSArray values, NSArray comparisonKeys, NSArray attributeClassNames, String unspecifiedArgumentKey)
          Returns a qualifier for searching on an entity.
 


Last updated Thu Oct 21 15:04:16 PDT 2004.

Copyright © 2004 Apple Computer, Inc.