Uses of Interface
com.atlassian.jira.util.Predicate

Packages that use Predicate
com.atlassian.jira.issue   
com.atlassian.jira.issue.fields.screen   
com.atlassian.jira.issue.fields.util   
com.atlassian.jira.issue.search.parameters.filter   
com.atlassian.jira.jql.query   
com.atlassian.jira.jql.util   
com.atlassian.jira.util   
com.atlassian.jira.util.collect   
com.atlassian.query.operator   
 

Uses of Predicate in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue with parameters of type Predicate
static void IssueUtils.filterIssues(java.util.Collection issues, Predicate<org.ofbiz.core.entity.GenericValue> filter)
          Filters a list of issues based on the type of IssueFilter passed in
 

Uses of Predicate in com.atlassian.jira.issue.fields.screen
 

Methods in com.atlassian.jira.issue.fields.screen with parameters of type Predicate
 FieldScreenRenderer FieldScreenRendererFactory.getFieldScreenRenderer(com.opensymphony.user.User remoteUser, Issue issue, IssueOperation issueOperation, Predicate<? super Field> predicate)
          Obtain a field screen renderer that can be used to render JIRA's fields for the passed arguments.
 FieldScreenRenderer FieldScreenRendererFactoryImpl.getFieldScreenRenderer(com.opensymphony.user.User remoteUser, Issue issue, IssueOperation issueOperation, Predicate<? super Field> predicate)
           
 

Uses of Predicate in com.atlassian.jira.issue.fields.util
 

Methods in com.atlassian.jira.issue.fields.util that return Predicate
static Predicate<Field> FieldPredicates.isCustomDateField()
          Return a predicate that will return true if the input field is a date custom field.
static Predicate<Field> FieldPredicates.isCustomField()
          Return a predicate that will return true if the input field is a custom field.
static Predicate<Field> FieldPredicates.isCustomUserField()
          Return a predicate that will return true if the input field is a user custom field.
static Predicate<Field> FieldPredicates.isDateField()
          Return a predicate that will return true if the input field is a date field.
static Predicate<Field> FieldPredicates.isStandardViewIssueCustomField()
          Return a predicate that returns true for custom fields that should be displayed in the custom field section of the view issue screen.
static Predicate<Field> FieldPredicates.isUserField()
          Return a predicate that will return true if the input field is a user field.
 

Uses of Predicate in com.atlassian.jira.issue.search.parameters.filter
 

Classes in com.atlassian.jira.issue.search.parameters.filter that implement Predicate
 class NoBrowsePermissionPredicate
           
 

Uses of Predicate in com.atlassian.jira.jql.query
 

Methods in com.atlassian.jira.jql.query with parameters of type Predicate
protected  org.apache.lucene.search.BooleanQuery RelationalOperatorIdIndexValueQueryFactory.generateRangeQueryForPredicate(java.lang.String fieldName, Predicate<T> match)
           
 

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

Classes in com.atlassian.jira.jql.util that implement Predicate
 class JqlVersionPredicate
          The JQL relational predicate for Versions.
 

Uses of Predicate in com.atlassian.jira.util
 

Classes in com.atlassian.jira.util that implement Predicate
 class EvaluateAllPredicate<T>
          A predicate that checks that all the given predicates evaulate to true for the specified input.
static class Predicates.And<T>
           
static class Predicates.Composite<T>
           
static class Predicates.FalsePredicate<T>
          A predicate that always returns false.
static class Predicates.Or<T>
           
static class Predicates.TruePredicate<T>
          A predicate that always returns true.
 

Methods in com.atlassian.jira.util that return Predicate
static
<T> Predicate<T>
Predicates.allOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when both the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.anyOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when one the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.equalTo(T check)
          A predicate that check that some input equals the passed argument.
static
<T> Predicate<T>
Predicates.falsePredicate()
          Return a predicate that always returns false.
static
<T> Predicate<T>
Predicates.TruePredicate.getInstance()
           
static
<T> Predicate<T>
Predicates.FalsePredicate.getInstance()
           
static
<T> Predicate<T>
Predicates.isInstanceOf(java.lang.Class<? extends T> clazz)
           
static
<T> Predicate<T>
Predicates.isNull()
          A predicate that check that the input is null.
static
<T> Predicate<T>
Predicates.not(Predicate<? super T> predicate)
          Create a predicate that inverts the behaviour of the passed predicate.
static
<T> Predicate<T>
Predicates.notNull()
          A predicate that check that the input is not null.
static
<T> Predicate<T>
Predicates.truePredicate()
          Return a predicate that always returns true.
 

Methods in com.atlassian.jira.util with parameters of type Predicate
static
<T> Predicate<T>
Predicates.allOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when both the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.allOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when both the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.anyOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when one the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.anyOf(Predicate<? super T> left, Predicate<? super T> right)
          Create a composite predicate that evaluates to true when one the passed predicates evaluate to true.
static
<T> Predicate<T>
Predicates.not(Predicate<? super T> predicate)
          Create a predicate that inverts the behaviour of the passed predicate.
 

Constructors in com.atlassian.jira.util with parameters of type Predicate
EvaluateAllPredicate(Predicate<T> first, Predicate<T>... predicates)
           
EvaluateAllPredicate(Predicate<T> first, Predicate<T>... predicates)
           
 

Uses of Predicate in com.atlassian.jira.util.collect
 

Methods in com.atlassian.jira.util.collect with parameters of type Predicate
static
<T> boolean
CollectionUtil.contains(java.lang.Iterable<? extends T> iterable, Predicate<T> predicate)
          Does the supplied Iterable contain anything that matches the predicate?
static
<T> boolean
CollectionUtil.contains(java.util.Iterator<? extends T> iterator, Predicate<T> predicate)
          Does the supplied Iterator contain anything that matches the predicate?
static
<T> java.util.Collection<T>
CollectionUtil.filter(java.util.Collection<T> collection, Predicate<? super T> predicate)
          Create a filtered Collection.
static
<T> java.lang.Iterable<T>
CollectionUtil.filter(java.lang.Iterable<T> iterable, Predicate<? super T> predicate)
          Create a filtered Iterable.
static
<T> java.util.Iterator<T>
CollectionUtil.filter(java.util.Iterator<T> iterator, Predicate<? super T> predicate)
          Create a filtered Iterator.
static
<T> T
CollectionUtil.findFirstMatch(java.lang.Iterable<? extends T> iterable, Predicate<T> predicate)
          Return the first found element that the predicate matches.
static
<T> int
CollectionUtil.indexOf(java.lang.Iterable<? extends T> iterable, Predicate<? super T> predicate)
          Returns the index of the first element that matches the predicate.
static
<T,R> java.lang.Iterable<R>
CollectionUtil.transformAndFilter(java.lang.Iterable<T> iterable, Function<T,R> transformer, Predicate<R> predicate)
           
 

Uses of Predicate in com.atlassian.query.operator
 

Methods in com.atlassian.query.operator that return Predicate
abstract
<T> Predicate<T>
Operator.getPredicateForValue(java.util.Comparator<? super T> comparator, T operand)
           
 



Copyright © 2002-2010 Atlassian. All Rights Reserved.