Class/Object

org.parboiled.scala.rules

Rule

Related Docs: object Rule | package rules

Permalink

abstract class Rule extends AnyRef

The base class of all scala parser rules.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Rule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Rule()

    Permalink

Abstract Value Members

  1. abstract val matcher: Matcher

    Permalink
  2. abstract def withMatcher(matcher: Matcher): Rule.this.type

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def append(other: Matcher): Matcher

    Permalink
    Attributes
    protected
  5. def append(other: Rule): Matcher

    Permalink
    Attributes
    protected
  6. def append(f: (Context[Any]) ⇒ Boolean): Matcher

    Permalink
    Attributes
    protected
  7. def append(action: Action[_]): Matcher

    Permalink
    Attributes
    protected
  8. def appendChoice(other: Matcher): Matcher

    Permalink
    Attributes
    protected
  9. def appendChoice(other: Rule): Matcher

    Permalink
    Attributes
    protected
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def label(label: String): Rule.this.type

    Permalink
  19. def memoMismatches: Rule.this.type

    Permalink
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def skipNode: Rule.this.type

    Permalink
  24. def suppressNode: Rule.this.type

    Permalink
  25. def suppressSubnodes: Rule.this.type

    Permalink
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    Rule → AnyRef → Any
  28. def unary_!: Rule0

    Permalink

    Creates a "NOT" syntactic predicate according to the PEG formalism.

  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def ~(other: Rule0): Rule.this.type

    Permalink

    Connects two rules into a rule a sequence.

  33. def ~%(f: (String) ⇒ Unit): Rule.this.type

    Permalink

    Creates a simple parser action with the input text matched by the immediately preceding rule as parameter.

  34. def ~:%(f: (Char) ⇒ Unit): Rule.this.type

    Permalink

    Creates a simple parser action with the first char of the input text matched by the immediately preceding rule as parameter.

  35. def ~:?(f: (Char) ⇒ Boolean): Rule.this.type

    Permalink

    Creates a semantic predicate on the first char of the input text matched by the immediately preceding rule.

  36. def ~?(f: (String) ⇒ Boolean): Rule.this.type

    Permalink

    Creates a semantic predicate on the input text matched by the immediately preceding rule.

Inherited from AnyRef

Inherited from Any

Ungrouped