public interface PseudoFunctions
| Modifier and Type | Interface and Description |
|---|---|
static class |
PseudoFunctions.CONTAINS
Selects all elements that contain the specified text.
|
static class |
PseudoFunctions.EQ
Select the element at index n within the matched set.
|
static class |
PseudoFunctions.GT
Select all elements at an index greater than index within the matched set.
|
static class |
PseudoFunctions.HAS
Selects elements which contain at least one element that matches the specified selector.
|
static class |
PseudoFunctions.LT
Select all elements at an index less than index within the matched set.
|
static class |
PseudoFunctions.NOT
Selects all elements that do not match the given selector.
|
static class |
PseudoFunctions.NTH_CHILD
The
: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 class |
PseudoFunctions.NTH_LAST_CHILD
The
: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 class |
PseudoFunctions.NTH_LAST_OF_TYPE
The
: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 class |
PseudoFunctions.NTH_OF_TYPE
The
: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. |