Interface ContentIterator


@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface ContentIterator
Iterator over the content of a node.
Since:
22
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    char
     
  • Method Details

    • hasNext

      boolean hasNext()
      Returns:
      true if another char can be obtain using the next() method.
    • next

      char next() throws BadLocationException
      Returns:
      The next char in the content.
      Throws:
      BadLocationException - If there are no more next characters.