Uses of Class
jodd.csselly.selector.PseudoFunction
Packages that use PseudoFunction
-
Uses of PseudoFunction in jodd.csselly.selector
Subclasses of PseudoFunction in jodd.csselly.selectorModifier and TypeClassDescriptionstatic classSelects all elements that contain the specified text.static classSelect the element at index n within the matched set.static classSelect all elements at an index greater than index within the matched set.static classSelects elements which contain at least one element that matches the specified selector.static classSelect all elements at an index less than index within the matched set.static classSelects all elements that do not match the given selector.static classThe: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 classThe: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 classThe: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 classThe: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.Fields in jodd.csselly.selector declared as PseudoFunctionModifier and TypeFieldDescriptionprotected final PseudoFunction<E> PseudoFunctionSelector.pseudoFunctionFields in jodd.csselly.selector with type parameters of type PseudoFunctionModifier and TypeFieldDescriptionprotected static final Map<String, PseudoFunction> PseudoFunctionSelector.PSEUDO_FUNCTION_MAPMethods in jodd.csselly.selector that return PseudoFunctionModifier and TypeMethodDescriptionPseudoFunctionSelector.getPseudoFunction()Returnspseudo function.static PseudoFunction<?> PseudoFunctionSelector.lookupPseudoFunction(String pseudoFunctionName) Lookups pseudo function for given pseudo function name.Method parameters in jodd.csselly.selector with type arguments of type PseudoFunctionModifier and TypeMethodDescriptionstatic voidPseudoFunctionSelector.registerPseudoFunction(Class<? extends PseudoFunction> pseudoFunctionType) Registers pseudo function.