Class | Description |
---|---|
AttributeSelector |
Attribute selector.
|
PseudoClass |
Pseudo classes.
|
PseudoClass.BUTTON |
Selects all button elements and elements of type button.
|
PseudoClass.CHECKBOX |
Selects all elements of type checkbox.
|
PseudoClass.CHECKED |
Selects all elements that are checked.
|
PseudoClass.EMPTY |
Represents an element that has no children at all.
|
PseudoClass.EVEN |
Selects even elements, zero-indexed.
|
PseudoClass.FILE |
Selects all elements of type file.
|
PseudoClass.FIRST |
Selects the first matched element.
|
PseudoClass.FIRST_CHILD |
Same as
:nth-child(1) . |
PseudoClass.FIRST_OF_TYPE |
Same as
:nth-of-type(1) . |
PseudoClass.HEADER |
Selects all elements that are headers, like h1, h2, h3 and so on.
|
PseudoClass.IMAGE |
Selects all elements of type image.
|
PseudoClass.INPUT |
Selects all input, textarea, select and button elements.
|
PseudoClass.LAST |
Selects the last matched element.
|
PseudoClass.LAST_CHILD |
Same as
:nth-last-child(1) . |
PseudoClass.LAST_OF_TYPE |
Same as
:nth-last-of-type(1) . |
PseudoClass.ODD |
Selects odd elements, zero-indexed.
|
PseudoClass.ONLY_CHILD |
Represents an element that has a parent element and whose parent element has no other element children.
|
PseudoClass.ONLY_OF_TYPE |
Represents an element that has a parent element and whose parent
element has no other element children with the same expanded element
name.
|
PseudoClass.PARENT |
Select all elements that are the parent of another element, including text nodes.
|
PseudoClass.PASSWORD |
Selects all elements of type password.
|
PseudoClass.RADIO |
Selects all elements of type radio.
|
PseudoClass.RESET |
Selects all elements of type reset.
|
PseudoClass.ROOT |
Represents an element that is the root of the document.
|
PseudoClass.SELECTED |
Selects all elements that are selected.
|
PseudoClass.SUBMIT |
Selects all elements of type submit.
|
PseudoClass.TEXT |
Selects all elements of type text.
|
PseudoClassSelector |
Pseudo class selector.
|
PseudoFunction<E> |
Pseudo functions.
|
PseudoFunction.CONTAINS |
Selects all elements that contain the specified text.
|
PseudoFunction.EQ |
Select the element at index n within the matched set.
|
PseudoFunction.GT |
Select all elements at an index greater than index within the matched set.
|
PseudoFunction.HAS |
Selects elements which contain at least one element that matches the specified selector.
|
PseudoFunction.LT |
Select all elements at an index less than index within the matched set.
|
PseudoFunction.NOT |
Selects all elements that do not match the given selector.
|
PseudoFunction.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. |
PseudoFunction.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. |
PseudoFunction.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. |
PseudoFunction.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. |
PseudoFunctionExpression |
Pseudo function expression , in form: an + b . |
PseudoFunctionSelector<E> |
Pseudo function selector.
|
Enum | Description |
---|---|
Match |
Attribute relation matcher. |
Copyright © 2003-present Jodd Team