Finder
@OpenApiAll
@Deprecated
public class ElementFinder
extends java.lang.Object
Constructor and Description |
---|
ElementFinder()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static void |
find(java.util.Collection children,
java.lang.String name,
java.util.Collection results)
Deprecated.
use
Finder.byName |
static Element |
find(Element root,
java.lang.Class[] type,
java.lang.String name)
Deprecated.
use
Finder.byName |
static Element |
find(Element root,
java.lang.Class[] type,
java.lang.String name,
boolean searchInChildren)
Deprecated.
|
static Element |
find(Element root,
java.lang.Class[] type,
java.lang.String name,
boolean searchInChildren,
boolean checkRoot)
Deprecated.
|
static void |
find(Element root,
java.lang.Class[] type,
java.lang.String name,
java.util.Collection results,
boolean searchInChildren)
Deprecated.
|
static Element |
find(Element root,
java.lang.Class type,
java.lang.String name)
Deprecated.
use
Finder.byName |
static Element |
find(Element root,
java.lang.Class type,
java.lang.String name,
boolean searchInChildren)
Deprecated.
|
static Element |
find(Element root,
java.lang.Class type,
java.lang.String name,
boolean searchInChildren,
boolean checkRoot)
Deprecated.
|
static void |
find(Element root,
java.lang.Class type,
java.lang.String name,
java.util.Collection results,
boolean searchInChildren)
Deprecated.
|
static java.util.Collection |
getChildren(Element parent,
java.lang.Class[] type,
boolean checkParent)
Deprecated.
use
Finder.byType |
static java.util.Collection |
getChildren(Element parent,
java.lang.Class[] type,
boolean recursively,
boolean checkParent)
Deprecated.
|
@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class type, java.lang.String name)
Finder.byName
root
- Root element.type
- Type of element.name
- Element name.@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class[] type, java.lang.String name)
Finder.byName
root
- Root element.type
- Elements type list.name
- Element name.@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class type, java.lang.String name, boolean searchInChildren)
Finder.byName
or Finder.byNameRecursively
root
- Root element.type
- Type of element.name
- Element name.searchInChildren
- Is search in children?@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class[] type, java.lang.String name, boolean searchInChildren)
Finder.byNameRecursively
or Finder.byName
root
- Root element.type
- Element type list.name
- Element name.searchInChildren
- Is search in children?@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class type, java.lang.String name, boolean searchInChildren, boolean checkRoot)
Finder.byNameRecursively
or Finder.byName
root
- Root element.type
- Type of element.name
- Element namesearchInChildren
- Is search in children?checkRoot
- Check with root element.@CheckForNull @Deprecated public static Element find(Element root, java.lang.Class[] type, java.lang.String name, boolean searchInChildren, boolean checkRoot)
Finder.byNameRecursively
or Finder.byName
root
- Root element.type
- Element type list.name
- Element namesearchInChildren
- Is search in children?checkRoot
- Check with root element.@Deprecated public static void find(Element root, java.lang.Class type, java.lang.String name, java.util.Collection results, boolean searchInChildren)
Finder.byNameAllRecursively
or Finder.byNameAll
root
- Root Element.type
- Type of element.name
- Element name.results
- The matched element.searchInChildren
- Is search in children?@Deprecated public static void find(Element root, java.lang.Class[] type, java.lang.String name, java.util.Collection results, boolean searchInChildren)
Finder.byNameAllRecursively
or Finder.byNameAll
root
- Root Element.type
- Element type list.name
- Element name.results
- The matched element.searchInChildren
- Is search in children?@Deprecated public static void find(java.util.Collection children, java.lang.String name, java.util.Collection results)
Finder.byName
children
- childrenname
- Element name.results
- The matched element.@Deprecated public static java.util.Collection getChildren(Element parent, java.lang.Class[] type, boolean checkParent)
Finder.byType
parent
- Root Element.type
- Element type list.checkParent
- is need to check parent?@Deprecated public static java.util.Collection getChildren(Element parent, java.lang.Class[] type, boolean recursively, boolean checkParent)
Finder.byType
or Finder.byTypeRecursively