Uses of Class
jodd.csselly.CssSelector
Packages that use CssSelector
Package
Description
CSSelly - CSS selector parser.
Different CSSelector selectors.
Lagarto DOM - create cool DOM tree with Lagarto parser.
-
Uses of CssSelector in jodd.csselly
Fields in jodd.csselly declared as CssSelectorModifier and TypeFieldDescription(package private) CssSelectorCSSellyLexer.cssSelectorprotected CssSelectorCssSelector.nextCssSelectorprotected CssSelectorCssSelector.prevCssSelectorFields in jodd.csselly with type parameters of type CssSelectorMethods in jodd.csselly that return CssSelectorModifier and TypeMethodDescriptionCssSelector.getNextCssSelector()Returns nextCssSelector.CssSelector.getPrevCssSelector()Returns previousCssSelector.Methods in jodd.csselly that return types with arguments of type CssSelectorModifier and TypeMethodDescriptionCSSelly.parse()Parses selector string.static List<List<CssSelector>> Parses string of selectors (separated with ,).Methods in jodd.csselly with parameters of type CssSelectorModifier and TypeMethodDescription(package private) voidCssSelector.setPrevCssSelector(CssSelector prevCssSelector) Method parameters in jodd.csselly with type arguments of type CssSelectorModifier and TypeMethodDescriptionstatic StringCSSelly.toString(List<CssSelector> selectors) Returns string representation of given list of selectors. -
Uses of CssSelector in jodd.csselly.selector
Subclasses with type arguments of type CssSelector in jodd.csselly.selectorModifier and TypeClassDescriptionstatic classSelects elements which contain at least one element that matches the specified selector.static classSelects all elements that do not match the given selector.Methods in jodd.csselly.selector that return types with arguments of type CssSelectorModifier and TypeMethodDescriptionPseudoFunctions.HAS.parseExpression(String expression) PseudoFunctions.NOT.parseExpression(String expression) Method parameters in jodd.csselly.selector with type arguments of type CssSelectorModifier and TypeMethodDescriptionbooleanPseudoFunctions.HAS.match(Node node, List<List<CssSelector>> selectors) booleanPseudoFunctions.NOT.match(Node node, List<List<CssSelector>> selectors) -
Uses of CssSelector in jodd.lagarto.dom
Methods in jodd.lagarto.dom with parameters of type CssSelectorModifier and TypeMethodDescriptionprotected booleanNodeSelector.filter(List<Node> currentResults, Node node, CssSelector cssSelector, int index) Filter nodes.protected voidNodeSelector.selectAndAdd(Node node, CssSelector cssSelector, List<Node> result) Selects single node for single selector and appends it to the results.protected voidNodeSelector.walk(Node rootNode, CssSelector cssSelector, List<Node> result) Finds nodes in the tree that matches single selector.protected voidNodeSelector.walkDescendantsIteratively(LinkedList<Node> nodes, CssSelector cssSelector, List<Node> result) Walks over the child notes, maintaining the tree order and not using recursion.Method parameters in jodd.lagarto.dom with type arguments of type CssSelectorModifier and TypeMethodDescriptionbooleanNodeMatcher.match(Collection<List<CssSelector>> selectorsCollection) NodeSelector.select(Collection<List<CssSelector>> selectorsCollection) Selected nodes using pre-parsed CSS selectors.NodeSelector.select(Node rootNode, List<CssSelector> selectors)