Modifier and Type | Method and Description |
---|---|
static void |
IssueUtils.filterIssues(Collection<Issue> issues,
Predicate<Issue> filter)
Filters a list of issues based on the type of IssueFilter passed in
|
Modifier and Type | Method and Description |
---|---|
FieldScreenRenderer |
FieldScreenRendererFactoryImpl.getFieldScreenRenderer(ApplicationUser remoteUser,
Issue issue,
IssueOperation issueOperation,
Predicate<? super Field> predicate) |
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(ApplicationUser remoteUser,
Issue issue,
IssueOperation issueOperation,
Predicate<? super Field> predicate)
|
FieldScreenRenderer |
FieldScreenRendererFactoryImpl.getFieldScreenRenderer(Issue issue,
IssueOperation issueOperation,
Predicate<? super Field> predicate) |
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(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.
|
Modifier and Type | Method and Description |
---|---|
Predicate<? super Field> |
IssueTabRendererDto.getCondition() |
Modifier and Type | Method and Description |
---|---|
Collection<FieldScreenLayoutItem> |
FieldScreenRenderLayoutItemFilterImpl.filterAvailableFieldScreenLayoutItems(Predicate<? super Field> condition,
List<FieldScreenLayoutItem> fieldLayoutItems) |
Collection<FieldScreenLayoutItem> |
FieldScreenRenderLayoutItemFilter.filterAvailableFieldScreenLayoutItems(Predicate<? super Field> condition,
List<FieldScreenLayoutItem> fieldLayoutItems) |
Constructor and Description |
---|
IssueTabRendererDto(Issue issue,
IssueOperation operation,
Predicate<? super Field> condition,
int currentTabPosition,
FieldScreenTab fieldScreenTab) |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
NoBrowsePermissionPredicate |
Modifier and Type | Method and Description |
---|---|
protected org.apache.lucene.search.BooleanQuery |
RelationalOperatorIdIndexValueQueryFactory.generateRangeQueryForPredicate(String fieldName,
Predicate<T> match) |
Modifier and Type | Class and Description |
---|---|
class |
JqlVersionPredicate
The JQL relational predicate for
Version s. |
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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(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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
EvaluateAllPredicate(Predicate<T> first,
Predicate<T>... predicates) |
EvaluateAllPredicate(Predicate<T> first,
Predicate<T>... predicates) |
Modifier and Type | Method and Description |
---|---|
static <T> boolean |
CollectionUtil.contains(Iterable<? extends T> iterable,
Predicate<T> predicate)
Does the supplied
Iterable contain anything that matches the predicate? |
static <T> boolean |
CollectionUtil.contains(Iterator<? extends T> iterator,
Predicate<T> predicate)
Does the supplied
Iterator contain anything that matches the predicate? |
static <T> Collection<T> |
CollectionUtil.filter(Collection<T> collection,
Predicate<? super T> predicate)
Deprecated.
Do not use this method as this returns a live view which in many cases leads to a poor performance. Since v6.4
|
static <T> Iterable<T> |
CollectionUtil.filter(Iterable<T> iterable,
Predicate<? super T> predicate)
Create a filtered
Iterable . |
static <T> Iterator<T> |
CollectionUtil.filter(Iterator<T> iterator,
Predicate<? super T> predicate)
Create a filtered
Iterator . |
static <T> T |
CollectionUtil.findFirstMatch(Iterable<? extends T> iterable,
Predicate<T> predicate)
Return the first found element that the predicate matches.
|
static <T> int |
CollectionUtil.indexOf(Iterable<? extends T> iterable,
Predicate<? super T> predicate)
Returns the index of the first element that matches the predicate.
|
static <T,R> Iterable<R> |
CollectionUtil.transformAndFilter(Iterable<T> iterable,
Function<T,R> transformer,
Predicate<R> predicate) |
Modifier and Type | Method and Description |
---|---|
Predicate<Class<? extends T>> |
ClassLocator.getPredicate() |
Modifier and Type | Method and Description |
---|---|
ClassLocator<T> |
ClassLocator.setPredicate(Predicate<Class<? extends T>> predicate) |
Modifier and Type | Method and Description |
---|---|
abstract <T> Predicate<T> |
Operator.getPredicateForValue(Comparator<? super T> comparator,
T operand) |
Copyright © 2002-2017 Atlassian. All Rights Reserved.