Uses of Interface
com.atlassian.query.clause.Clause

Packages that use Clause
com.atlassian.jira.issue.search   
com.atlassian.jira.issue.search.searchers.transformer   
com.atlassian.jira.jql.permission   
com.atlassian.jira.jql.util   
com.atlassian.query   
com.atlassian.query.clause   
 

Uses of Clause in com.atlassian.jira.issue.search
 

Methods in com.atlassian.jira.issue.search that return Clause
 Clause ClauseTooComplexSearchException.getClause()
           
 

Constructors in com.atlassian.jira.issue.search with parameters of type Clause
ClauseTooComplexSearchException(Clause clause)
           
 

Uses of Clause in com.atlassian.jira.issue.search.searchers.transformer
 

Methods in com.atlassian.jira.issue.search.searchers.transformer that return Clause
 Clause SearchInputTransformer.getSearchClause(User searcher, FieldValuesHolder fieldValuesHolder)
          Gets the portion of the Search Query that this searcher is responsible for.
 

Uses of Clause in com.atlassian.jira.jql.permission
 

Methods in com.atlassian.jira.jql.permission that return Clause
 Clause ClauseSanitiser.sanitise(com.atlassian.crowd.embedded.api.User user, TerminalClause clause)
          Given a user and a clause, will return a sanitised clause that when possible will not contain any information that the specified user does not have permission to see.
 

Uses of Clause in com.atlassian.jira.jql.util
 

Methods in com.atlassian.jira.jql.util with parameters of type Clause
 String JqlStringSupport.generateJqlString(Clause clause)
          Generates a JQL string representation for the passed clause.
 

Uses of Clause in com.atlassian.query
 

Methods in com.atlassian.query that return Clause
 Clause QueryImpl.getWhereClause()
           
 Clause Query.getWhereClause()
           
 

Constructors in com.atlassian.query with parameters of type Clause
QueryImpl(Clause whereClause)
           
QueryImpl(Clause whereClause, OrderBy orderByClause, String originalQuery)
           
QueryImpl(Clause whereClause, String originalQuery)
           
 

Uses of Clause in com.atlassian.query.clause
 

Subinterfaces of Clause in com.atlassian.query.clause
 interface TerminalClause
          Denotes a terminal nodes that contain an Operator and an Operand.
 interface WasClause
          TODO: Document this class / interface here
 

Classes in com.atlassian.query.clause that implement Clause
 class AndClause
          Used to represent a logical AND in the query tree.
 class MultiClause
          An abstract class that will contain multiple clauses.
 class NotClause
          Used to represent a logical NOT in the query tree.
 class OrClause
          Used to represent a logical OR in the query tree.
 

Methods in com.atlassian.query.clause that return Clause
 Clause NotClause.getSubClause()
           
 

Methods in com.atlassian.query.clause that return types with arguments of type Clause
 List<Clause> NotClause.getClauses()
           
 List<Clause> MultiClause.getClauses()
           
 List<Clause> Clause.getClauses()
           
 

Methods in com.atlassian.query.clause with parameters of type Clause
static ClausePrecedence ClausePrecedence.getPrecedence(Clause clause)
           
 

Constructors in com.atlassian.query.clause with parameters of type Clause
AndClause(Clause... clauses)
           
NotClause(Clause subClause)
           
OrClause(Clause... clauses)
           
 

Constructor parameters in com.atlassian.query.clause with type arguments of type Clause
AndClause(Collection<? extends Clause> clauses)
           
MultiClause(Collection<? extends Clause> clauses)
           
OrClause(Collection<? extends Clause> clauses)
           
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.