Class | Description |
---|---|
AttributeSetSelector |
An attribute set selector selects by checking if an attribute is set.
|
AttributeValueContainSelector |
An attribute value contain selector selects by checking that the value of an attribute contains a specific string.
|
AttributeValueEndSelector |
An attribute value end selector selects by checking that the value of an attribute ends with a specific string.
|
AttributeValueListSelector |
An attribute value list selector selects by checking that a value is contained in an attribute.
|
AttributeValuePrefixSelector |
An attribute value prefix selector selects by checking that the value of an attribute equals a prefix or starts with
this prefix.
|
AttributeValueSelector |
An attribute value selector selects by checking the value of an attribute.
|
AttributeValueStartSelector |
An attribute value start selector selects by checking that the value of an attribute starts with a specific string.
|
ClassSelector |
A class selector selects from a class.
|
EvenChildSelector |
An even child selector selects by checking if an element is at an even position in its parent (1, 3, 5,…).
|
FirstChildSelector |
A first child selector selects by checking if an element is the first child of its parent.
|
IDSelector |
An ID selector selects by checking if the element is registered in
ElementRegistry . |
InstanceSelector |
An instance selector selects by checking the element id (Java instance).
|
LastChildSelector |
A last child selector selects by checking if an element is the last child of its parent.
|
NotSelector |
A not selector selects every element that is not selected by its wrapped selector.
|
NthChildSelector |
A nth child selector selects by checking if an element is the nth child of its parent.
|
OddChildSelector |
An odd child selector selects by checking if an element is at an odd position in its parent (0, 2, 4,…).
|
SpecificityHelper |
Provides some facilities to compute selectors specificity.
|
StateSelector |
A state selector selects from a state.
|
TypeNameSelector |
A type name selector selects by checking the element type name (Java class name).
|
TypeOrSubtypeSelector |
A type or subtype selector selects by checking the element type hierarchy (Java class).
|
TypeSelector |
A type selector selects by checking the element type (Java class).
|
UniversalSelector |
An universal selector selects all elements.
|