Uses of Interface
com.atlassian.query.operand.Operand

Packages that use Operand
com.atlassian.jira.issue.search.searchers.transformer   
com.atlassian.jira.issue.search.searchers.util   
com.atlassian.jira.jql.builder   
com.atlassian.jira.jql.operand   
com.atlassian.query.clause   
com.atlassian.query.operand   
 

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

Methods in com.atlassian.jira.issue.search.searchers.transformer that return Operand
 Operand FieldFlagOperandRegistry.getOperandForFlag(String fieldName, String flagValue)
          Retrieves the operand associated with a field and navigator flag value pair.
 

Methods in com.atlassian.jira.issue.search.searchers.transformer with parameters of type Operand
 Set<String> FieldFlagOperandRegistry.getFlagForOperand(String fieldName, Operand operand)
          Retrieves the navigator flag values associated with the field name and operand pair.
 

Uses of Operand in com.atlassian.jira.issue.search.searchers.util
 

Methods in com.atlassian.jira.issue.search.searchers.util that return Operand
protected  Operand DefaultIndexedInputHelper.createOperand(String stringValue)
          Resolve this string representation of a navigator value (known not to be a field flag) into an operand to be used in a clause.
 

Uses of Operand in com.atlassian.jira.jql.builder
 

Methods in com.atlassian.jira.jql.builder with parameters of type Operand
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Operand... operands)
          Add the JQL condition clauseName in (operands) to the query being built.
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Operand operand)
          Add the JQL condition clauseName = operand to the query being built.
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Operator operator, Operand... operands)
          Add the JQL condition clauseName operator (operands) to the query being built.
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Operator operator, Operand operand)
          Add the JQL condition clauseName operator operand to the query being built.
 JqlClauseBuilder JqlClauseBuilder.addRangeCondition(String clauseName, Operand start, Operand end)
          Add a condition range condition to the current query for the passed values.
 JqlClauseBuilder ConditionBuilder.eq(Operand operand)
          Create the JQL condition with the equals operator and the passed value.
 JqlClauseBuilder ConditionBuilder.gt(Operand operand)
          Create the JQL condition with the greater than operator and the passed value.
 JqlClauseBuilder ConditionBuilder.gtEq(Operand operand)
          Create the JQL condition with the greater than equals operator and the passed value.
 JqlClauseBuilder ConditionBuilder.in(Operand... operands)
          Create the JQL condition with the in operator and the passed values.
 JqlClauseBuilder ConditionBuilder.like(Operand operand)
          Create the JQL condition with the like operator and the passed value.
 JqlClauseBuilder ConditionBuilder.lt(Operand operand)
          Create the JQL condition with the less than operator and the passed value.
 JqlClauseBuilder ConditionBuilder.ltEq(Operand operand)
          Create the JQL condition with the less than equals operator and the passed value.
 JqlClauseBuilder ConditionBuilder.notEq(Operand operand)
          Create the JQL condition with the not equals operator and the passed value.
 JqlClauseBuilder ConditionBuilder.notIn(Operand... operands)
          Create the JQL condition with the not in operator and the passed values.
 JqlClauseBuilder ConditionBuilder.notLike(Operand operand)
          Create the JQL condition with the not like operator and the passed value.
 JqlClauseBuilder ValueBuilder.operand(Operand operand)
          Finish the current condition such that it matches the passed operand.
 JqlClauseBuilder ValueBuilder.operands(Operand... operands)
          Finish the current condition such that it matches the passed operands.
 JqlClauseBuilder ConditionBuilder.range(Operand start, Operand end)
          Add a condition range condition to the current query for the passed values.
 

Method parameters in com.atlassian.jira.jql.builder with type arguments of type Operand
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Collection<? extends Operand> operands)
          Add the JQL condition clauseName in (operands) to the query being built.
 JqlClauseBuilder JqlClauseBuilder.addCondition(String clauseName, Operator operator, Collection<? extends Operand> operands)
          Add the JQL condition clauseName operator (operands) to the query being built.
 JqlClauseBuilder ConditionBuilder.inOperands(Collection<Operand> operands)
          Create the JQL condition with the in operator and the passed values.
 JqlClauseBuilder ConditionBuilder.notInOperands(Collection<Operand> operands)
          Create the JQL condition with the not in operator and the passed values.
 JqlClauseBuilder ValueBuilder.operands(Collection<? extends Operand> operands)
          Finish the current condition such that it matches the passed operands.
 

Uses of Operand in com.atlassian.jira.jql.operand
 

Methods in com.atlassian.jira.jql.operand that return Operand
 Operand QueryLiteral.getSourceOperand()
           
 

Methods in com.atlassian.jira.jql.operand with parameters of type Operand
 QueryLiteral JqlOperandResolver.getSingleValue(com.atlassian.crowd.embedded.api.User user, Operand operand, TerminalClause clause)
          Returns the single value contained within the passed operand.
 List<QueryLiteral> JqlOperandResolver.getValues(QueryCreationContext queryCreationContext, Operand operand, TerminalClause terminalClause)
          Return the values contained within the passed operand.
 List<QueryLiteral> JqlOperandResolver.getValues(com.atlassian.crowd.embedded.api.User searcher, Operand operand, TerminalClause terminalClause)
          Return the values contained within the passed operand.
 boolean JqlOperandResolver.isEmptyOperand(Operand operand)
          Returns true if the operand represents an EMPTY operand.
 boolean JqlOperandResolver.isFunctionOperand(Operand operand)
          Returns true if the passed operand is a function call.
 boolean JqlOperandResolver.isListOperand(Operand operand)
          Returns true if the passed operand returns a list of values.
 boolean JqlOperandResolver.isValidOperand(Operand operand)
          Returns true if the operand is one which is known about.
 MessageSet JqlOperandResolver.validate(com.atlassian.crowd.embedded.api.User user, Operand operand, TerminalClause terminalClause)
          Validates the operand against its handler.
 MessageSet JqlOperandResolver.validate(com.atlassian.crowd.embedded.api.User searcher, Operand operand, WasClause clause)
           
 

Constructors in com.atlassian.jira.jql.operand with parameters of type Operand
QueryLiteral(Operand sourceOperand)
           
QueryLiteral(Operand sourceOperand, Long longValue)
           
QueryLiteral(Operand sourceOperand, String stringValue)
           
 

Uses of Operand in com.atlassian.query.clause
 

Methods in com.atlassian.query.clause that return Operand
 Operand TerminalClauseImpl.getOperand()
           
 Operand TerminalClause.getOperand()
           
 

Constructors in com.atlassian.query.clause with parameters of type Operand
TerminalClauseImpl(String name, Operator operator, Operand operand)
          Creates a terminal clause with the specified name, operator and operand.
 

Uses of Operand in com.atlassian.query.operand
 

Classes in com.atlassian.query.operand that implement Operand
 class EmptyOperand
          Used to represent a value that has not been set for a field.
 class FunctionOperand
          Represents a function in the query tree.
 class MultiValueOperand
          Used to represent a multiple constant values as an Operand.
 class SingleValueOperand
          Used to represent a single constant value as an Operand.
 

Methods in com.atlassian.query.operand that return types with arguments of type Operand
 List<Operand> MultiValueOperand.getValues()
           
 

Constructors in com.atlassian.query.operand with parameters of type Operand
MultiValueOperand(Operand... operands)
           
 

Constructor parameters in com.atlassian.query.operand with type arguments of type Operand
MultiValueOperand(Collection<? extends Operand> values)
           
 



Copyright © 2002-2013 Atlassian. All Rights Reserved.