Package jodd.csselly.selector
Interface PseudoFunctions
-
public interface PseudoFunctions
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPseudoFunctions.CONTAINSSelects all elements that contain the specified text.static classPseudoFunctions.EQSelect the element at index n within the matched set.static classPseudoFunctions.GTSelect all elements at an index greater than index within the matched set.static classPseudoFunctions.HASSelects elements which contain at least one element that matches the specified selector.static classPseudoFunctions.LTSelect all elements at an index less than index within the matched set.static classPseudoFunctions.NOTSelects all elements that do not match the given selector.static classPseudoFunctions.NTH_CHILDThe: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 classPseudoFunctions.NTH_LAST_CHILDThe: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 classPseudoFunctions.NTH_LAST_OF_TYPEThe: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 classPseudoFunctions.NTH_OF_TYPEThe: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.
-