Uses of Interface
jenkins.scm.impl.form.NamedArrayList.Predicate
Packages that use NamedArrayList.Predicate
- 
Uses of NamedArrayList.Predicate in jenkins.scm.impl.formMethods in jenkins.scm.impl.form that return NamedArrayList.PredicateModifier and TypeMethodDescriptionstatic <E> NamedArrayList.Predicate<E>NamedArrayList.allOf(NamedArrayList.Predicate<? super E>... predicates) CombinesNamedArrayList.Predicateinstances using a boolean short-circuit logical AND.static <E> NamedArrayList.Predicate<E>NamedArrayList.anyOf(NamedArrayList.Predicate<E>... predicates) CombinesNamedArrayList.Predicateinstances using a boolean short-circuit logical OR.static <A extends Annotation>
 NamedArrayList.Predicate<Object>NamedArrayList.withAnnotation(Class<A> annotation) Returns aNamedArrayList.Predicatethat checks if the object class has been annotated with the supplied annotation.Methods in jenkins.scm.impl.form with parameters of type NamedArrayList.PredicateModifier and TypeMethodDescriptionstatic <E> NamedArrayList.Predicate<E>NamedArrayList.allOf(NamedArrayList.Predicate<? super E>... predicates) CombinesNamedArrayList.Predicateinstances using a boolean short-circuit logical AND.static <E> NamedArrayList.Predicate<E>NamedArrayList.anyOf(NamedArrayList.Predicate<E>... predicates) CombinesNamedArrayList.Predicateinstances using a boolean short-circuit logical OR.static <E> voidNamedArrayList.select(List<? extends E> source, String name, NamedArrayList.Predicate<? super E> selector, boolean removeSelectedFromSource, List<NamedArrayList<? extends E>> destination) Helper method that creates a newNamedArrayListby selecting matching elements from a source list and appends the newNamedArrayListto a list ofNamedArrayList.static <E> voidNamedArrayList.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 newNamedArrayListby selecting matching elements from a source list and appends the newNamedArrayListto a list ofNamedArrayList.