Uses of Interface
dev.jcputney.mjml.css.CssSelector
Packages that use CssSelector
-
Uses of CssSelector in dev.jcputney.mjml.css
Subinterfaces of CssSelector in dev.jcputney.mjml.cssModifier and TypeInterfaceDescriptionstatic interfaceA single simple selector part (type, class, ID, attribute, pseudo-class, or pseudo-element).Classes in dev.jcputney.mjml.css that implement CssSelectorModifier and TypeClassDescriptionstatic final recordAttribute selector with operator.static final recordA class selector (e.g. ".red").static final recordA complex selector joining two selectors with a combinator (e.g.static final recordA compound selector consisting of a chain of simple selectors with no combinator (e.g.static final recordAn ID selector (e.g.static final recordA pseudo-class selector (e.g.static final recordA pseudo-element selector (e.g.static final recordA comma-separated list of selectors (e.g.static final recordA type (element name) selector (e.g.static final recordThe universal selector (*), which matches any element.Methods in dev.jcputney.mjml.css that return CssSelectorModifier and TypeMethodDescriptionCssSelector.ComplexSelector.left()Returns the value of theleftrecord component.static CssSelectorParses a selector string into a CssSelector tree.CssSelector.ComplexSelector.right()Returns the value of therightrecord component.Methods in dev.jcputney.mjml.css that return types with arguments of type CssSelectorModifier and TypeMethodDescriptionCssSelector.SelectorList.selectors()Returns the value of theselectorsrecord component.Methods in dev.jcputney.mjml.css with parameters of type CssSelectorModifier and TypeMethodDescriptionstatic booleanCssSelectorMatcher.hasPseudo(CssSelector selector) Returns true if the selector contains pseudo-classes or pseudo-elements that cannot be inlined (e.g.static booleanCssSelectorMatcher.matches(CssSelector selector, HtmlElement element) Tests whether the given selector matches the given element.Constructors in dev.jcputney.mjml.css with parameters of type CssSelectorModifierConstructorDescriptionComplexSelector(CssSelector left, CssSelector.Combinator combinator, CssSelector right) Creates an instance of aComplexSelectorrecord class.Constructor parameters in dev.jcputney.mjml.css with type arguments of type CssSelectorModifierConstructorDescriptionSelectorList(List<CssSelector> selectors) Creates an instance of aSelectorListrecord class.