Package jodd.csselly.selector
Interface PseudoClasses
-
public interface PseudoClassesSimple collection ofPseudoClassimplementations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPseudoClasses.BUTTONSelects all button elements and elements of type button.static classPseudoClasses.CHECKBOXSelects all elements of type checkbox.static classPseudoClasses.CHECKEDSelects all elements that are checked.static classPseudoClasses.EMPTYRepresents an element that has no children at all.static classPseudoClasses.EVENSelects even elements, zero-indexed.static classPseudoClasses.FILESelects all elements of type file.static classPseudoClasses.FIRSTSelects the first matched element.static classPseudoClasses.FIRST_CHILDSame as:nth-child(1).static classPseudoClasses.FIRST_OF_TYPESame as:nth-of-type(1).static classPseudoClasses.HEADERSelects all elements that are headers, like h1, h2, h3 and so on.static classPseudoClasses.IMAGESelects all elements of type image.static classPseudoClasses.INPUTSelects all input, textarea, select and button elements.static classPseudoClasses.LASTSelects the last matched element.static classPseudoClasses.LAST_CHILDSame as:nth-last-child(1).static classPseudoClasses.LAST_OF_TYPESame as:nth-last-of-type(1).static classPseudoClasses.ODDSelects odd elements, zero-indexed.static classPseudoClasses.ONLY_CHILDRepresents an element that has a parent element and whose parent element has no other element children.static classPseudoClasses.ONLY_OF_TYPERepresents an element that has a parent element and whose parent element has no other element children with the same expanded element name.static classPseudoClasses.PARENTSelect all elements that are the parent of another element, including text nodes.static classPseudoClasses.PASSWORDSelects all elements of type password.static classPseudoClasses.RADIOSelects all elements of type radio.static classPseudoClasses.RESETSelects all elements of type reset.static classPseudoClasses.ROOTRepresents an element that is the root of the document.static classPseudoClasses.SELECTEDSelects all elements that are selected.static classPseudoClasses.SUBMITSelects all elements of type submit.static classPseudoClasses.TEXTSelects all elements of type text.
-