Class Finder.ByNameAllFinder

java.lang.Object
com.nomagic.magicdraw.uml.Finder.ByNameAllFinder
Enclosing class:
Finder

public static final class Finder.ByNameAllFinder extends Object
Search for all elements by simple name among the given root element(s) and direct children of root element(s)
  • Method Details

    • find

      public <T extends Element> Collection<T> find(Element root, @CheckForNull Class type, String name)
      Find elements by name. Include root(s) into a search.
      Parameters:
      root - root element
      type - strict class type of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Element root, @CheckForNull Class[] type, String name)
      Find elements by name. Include root(s) into a search.
      Parameters:
      root - root element
      type - strict class types of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Collection<? extends Element> roots, @CheckForNull Class type, String name)
      Find elements by name. Include root(s) into a search.
      Parameters:
      roots - root element
      type - strict class type of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Collection<? extends Element> roots, @CheckForNull Class[] type, String name)
      Find elements by name. Include root(s) into a search.
      Parameters:
      roots - root element
      type - strict class types of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Element root, @CheckForNull Class type, String name, boolean includeRoot)
      Find elements by name.
      Parameters:
      root - root element
      type - strict class type of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Element root, @CheckForNull Class[] type, String name, boolean includeRoot)
      Find elements by name.
      Parameters:
      root - root element
      type - strict class types of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Collection<? extends Element> roots, @CheckForNull Class type, String name, boolean includeRoot)
      Find elements by name.
      Parameters:
      roots - root element
      type - strict class type of element. Nulls means any element
      name - Element name
      Returns:
      found Elements
    • find

      public <T extends Element> Collection<T> find(Collection<? extends Element> roots, @CheckForNull Class[] type, String name, boolean includeRoot)
      Find elements by name.
      Parameters:
      roots - root element
      type - strict class types of element. Nulls means any element
      name - Element name
      Returns:
      found Elements