类 CommonContentState

java.lang.Object
cool.document.qtmd.BaseState
cool.document.qtmd.CommonContentState
所有已实现的接口:
State

public class CommonContentState extends BaseState
普通文本状态。
  • 构造器详细资料

    • CommonContentState

      public CommonContentState(State preState, org.jsoup.nodes.Element curDom)
  • 方法详细资料

    • preState

      public State preState()
      从接口复制的说明: State
      前置状态
      指定者:
      preState 在接口中 State
      覆盖:
      preState 在类中 BaseState
      返回:
    • dom

      public org.jsoup.nodes.Element dom()
    • metNewline

      public State metNewline(char newlineChar)
      从接口复制的说明: State
      遇见换行符的处理方法。通常是遇到换行符(State.isNewline(char))时调用的方法。默认加到缓冲中。
      返回:
    • end

      public void end()
      从接口复制的说明: State
      终结。通常是不再有更多字符需要处理时,本状态的退出/结束/终结机制。 默认先结束前置状态,再刷缓冲区字符(State.flushBuffer())。
    • checkHr

      protected boolean checkHr()