Uses of Class
jodd.csselly.selector.PseudoFunctionExpression
Packages that use PseudoFunctionExpression
-
Uses of PseudoFunctionExpression in jodd.csselly.selector
Subclasses with type arguments of type PseudoFunctionExpression in jodd.csselly.selectorModifier and TypeClassDescriptionstatic classThe:nth-child(an+b)pseudo-class notation represents an element that has an+b-1 siblings before it in the document tree, for any positive integer or zero value of n, and has a parent element.static classThe:nth-last-child(an+b)pseudo-class notation represents an element that has an+b-1 siblings after it in the document tree, for any positive integer or zero value of n, and has a parent element.static classThe:nth-last-of-type(an+b)pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name after it in the document tree, for any zero or positive integer value of n, and has a parent element.static classThe:nth-of-type(an+b)pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name before it in the document tree, for any zero or positive integer value of n, and has a parent element.Methods in jodd.csselly.selector that return PseudoFunctionExpressionModifier and TypeMethodDescriptionPseudoFunctions.NTH_CHILD.parseExpression(String expression) PseudoFunctions.NTH_LAST_CHILD.parseExpression(String expression) PseudoFunctions.NTH_LAST_OF_TYPE.parseExpression(String expression) PseudoFunctions.NTH_OF_TYPE.parseExpression(String expression) Methods in jodd.csselly.selector with parameters of type PseudoFunctionExpressionModifier and TypeMethodDescriptionbooleanPseudoFunctions.NTH_CHILD.match(Node node, PseudoFunctionExpression expression) booleanPseudoFunctions.NTH_LAST_CHILD.match(Node node, PseudoFunctionExpression expression) booleanPseudoFunctions.NTH_LAST_OF_TYPE.match(Node node, PseudoFunctionExpression expression) booleanPseudoFunctions.NTH_OF_TYPE.match(Node node, PseudoFunctionExpression expression)