public abstract class Util extends Object
Modifier and Type | Field and Description |
---|---|
static Function<Node,Node> |
getFirstChild |
static Function<Node,Node> |
getNextSibling |
static Function<Node,Node> |
getParentNode |
static Function<Node,Node> |
getPreviousSibling |
Modifier and Type | Method and Description |
---|---|
static List<Node> |
attrs(Node node) |
static InitProducer<Node,Node> |
children(Node parent,
boolean reverse) |
static InitProducer<Node,Node> |
nextSibling(Node node,
boolean self) |
static InitProducer<Node,Node> |
previousSibling(Node node,
boolean self) |
public static InitProducer<Node,Node> children(Node parent, boolean reverse)
public static InitProducer<Node,Node> nextSibling(Node node, boolean self)
public static InitProducer<Node,Node> previousSibling(Node node, boolean self)
see also the complete user documentation .