Uses of Interface
jenkins.scm.impl.form.NamedArrayList.Predicate
-
Uses of NamedArrayList.Predicate in jenkins.scm.impl.form
Modifier and TypeMethodDescriptionstatic <E> NamedArrayList.Predicate<E>
NamedArrayList.allOf
(NamedArrayList.Predicate<? super E>... predicates) CombinesNamedArrayList.Predicate
instances using a boolean short-circuit logical AND.static <E> NamedArrayList.Predicate<E>
NamedArrayList.anyOf
(NamedArrayList.Predicate<E>... predicates) CombinesNamedArrayList.Predicate
instances using a boolean short-circuit logical OR.static <A extends Annotation>
NamedArrayList.Predicate<Object>NamedArrayList.withAnnotation
(Class<A> annotation) Returns aNamedArrayList.Predicate
that checks if the object class has been annotated with the supplied annotation.Modifier and TypeMethodDescriptionstatic <E> NamedArrayList.Predicate<E>
NamedArrayList.allOf
(NamedArrayList.Predicate<? super E>... predicates) CombinesNamedArrayList.Predicate
instances using a boolean short-circuit logical AND.static <E> NamedArrayList.Predicate<E>
NamedArrayList.anyOf
(NamedArrayList.Predicate<E>... predicates) CombinesNamedArrayList.Predicate
instances using a boolean short-circuit logical OR.static <E> void
NamedArrayList.select
(List<? extends E> source, String name, NamedArrayList.Predicate<? super E> selector, boolean removeSelectedFromSource, List<NamedArrayList<? extends E>> destination) Helper method that creates a newNamedArrayList
by selecting matching elements from a source list and appends the newNamedArrayList
to a list ofNamedArrayList
.static <E> void
NamedArrayList.select
(List<? extends E> source, String name, NamedArrayList.Predicate<? super E> selector, boolean removeSelectedFromSource, List<NamedArrayList<? extends E>> destination, int index) Helper method that creates a newNamedArrayList
by selecting matching elements from a source list and appends the newNamedArrayList
to a list ofNamedArrayList
.