Interface CSSRuleList

All Superinterfaces:
CSSRuleList, Iterable<CSSRule>

public interface CSSRuleList extends CSSRuleList, Iterable<CSSRule>
A rule list with additional utility methods.
  • Method Details

    • item

      CSSRule item(int index)
      Retrieve a CSS rule by ordinal index. The order in this collection represents the order of the rules in the CSS style sheet.
      Specified by:
      item in interface CSSRuleList
      Parameters:
      index - the index in the collection.
      Returns:
      the rule at the index position, or null if the index is less than zero or equal or greater to the list length.
    • iterator

      Iterator<CSSRule> iterator()
      Returns an iterator over the rules.
      Specified by:
      iterator in interface Iterable<CSSRule>