/* * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.lang.model.util; import java.lang.Iterable; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Set; import java.util.EnumSet; import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.NoSuchElementException; import javax.lang.model.element.*; import javax.lang.model.type.*; /** * Filters for selecting just the elements of interest from a * collection of elements. The returned sets and lists are new * collections and do use the argument as a backing store. The * methods in this class do not make any attempts to guard against * concurrent modifications of the arguments. The returned sets and * lists are mutable but unsafe for concurrent access. A returned set * has the same iteration order as the argument set to a method. * *

If iterables and sets containing {@code null} are passed as * arguments to methods in this class, a {@code NullPointerException} * will be thrown. * *

Note that a static import statement can make the text of * calls to the methods in this class more concise; for example: * *

 *     import static javax.lang.model.util.ElementFilter.*;
 *     ...
 *         {@code List} fs = fieldsIn(someClass.getEnclosedElements());
 * 
* * @author Joseph D. Darcy * @author Scott Seligman * @author Peter von der Ahé * @author Martin Buchholz * @since 1.6 */ public class ElementFilter { private ElementFilter() {} // Do not instantiate. private static Set CONSTRUCTOR_KIND = Collections.unmodifiableSet(EnumSet.of(ElementKind.CONSTRUCTOR)); private static Set FIELD_KINDS = Collections.unmodifiableSet(EnumSet.of(ElementKind.FIELD, ElementKind.ENUM_CONSTANT)); private static Set METHOD_KIND = Collections.unmodifiableSet(EnumSet.of(ElementKind.METHOD)); private static Set PACKAGE_KIND = Collections.unmodifiableSet(EnumSet.of(ElementKind.PACKAGE)); private static Set TYPE_KINDS = Collections.unmodifiableSet(EnumSet.of(ElementKind.CLASS, ElementKind.ENUM, ElementKind.INTERFACE, ElementKind.ANNOTATION_TYPE)); /** * Returns a list of fields in {@code elements}. * @return a list of fields in {@code elements} * @param elements the elements to filter */ public static List fieldsIn(Iterable elements) { return listFilter(elements, FIELD_KINDS, VariableElement.class); } /** * Returns a set of fields in {@code elements}. * @return a set of fields in {@code elements} * @param elements the elements to filter */ public static Set fieldsIn(Set elements) { return setFilter(elements, FIELD_KINDS, VariableElement.class); } /** * Returns a list of constructors in {@code elements}. * @return a list of constructors in {@code elements} * @param elements the elements to filter */ public static List constructorsIn(Iterable elements) { return listFilter(elements, CONSTRUCTOR_KIND, ExecutableElement.class); } /** * Returns a set of constructors in {@code elements}. * @return a set of constructors in {@code elements} * @param elements the elements to filter */ public static Set constructorsIn(Set elements) { return setFilter(elements, CONSTRUCTOR_KIND, ExecutableElement.class); } /** * Returns a list of methods in {@code elements}. * @return a list of methods in {@code elements} * @param elements the elements to filter */ public static List methodsIn(Iterable elements) { return listFilter(elements, METHOD_KIND, ExecutableElement.class); } /** * Returns a set of methods in {@code elements}. * @return a set of methods in {@code elements} * @param elements the elements to filter */ public static Set methodsIn(Set elements) { return setFilter(elements, METHOD_KIND, ExecutableElement.class); } /** * Returns a list of types in {@code elements}. * @return a list of types in {@code elements} * @param elements the elements to filter */ public static List typesIn(Iterable elements) { return listFilter(elements, TYPE_KINDS, TypeElement.class); } /** * Returns a set of types in {@code elements}. * @return a set of types in {@code elements} * @param elements the elements to filter */ public static Set typesIn(Set elements) { return setFilter(elements, TYPE_KINDS, TypeElement.class); } /** * Returns a list of packages in {@code elements}. * @return a list of packages in {@code elements} * @param elements the elements to filter */ public static List packagesIn(Iterable elements) { return listFilter(elements, PACKAGE_KIND, PackageElement.class); } /** * Returns a set of packages in {@code elements}. * @return a set of packages in {@code elements} * @param elements the elements to filter */ public static Set packagesIn(Set elements) { return setFilter(elements, PACKAGE_KIND, PackageElement.class); } // Assumes targetKinds and E are sensible. private static List listFilter(Iterable elements, Set targetKinds, Class clazz) { List list = new ArrayList(); for (Element e : elements) { if (targetKinds.contains(e.getKind())) list.add(clazz.cast(e)); } return list; } // Assumes targetKinds and E are sensible. private static Set setFilter(Set elements, Set targetKinds, Class clazz) { // Return set preserving iteration order of input set. Set set = new LinkedHashSet(); for (Element e : elements) { if (targetKinds.contains(e.getKind())) set.add(clazz.cast(e)); } return set; } }