Interface StateExpressionCapture<T>

Type Parameters:
T - The type of the result.
All Known Implementing Classes:
CaptureToExpression

public interface StateExpressionCapture<T>
Something that can be used to capture the results of traversing the parser syntax tree for a state expression.
Author:
rob
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    and()
     
     
    void
    is(String job, String state)
     
    void
    not()
     
    void
    or()
     
  • Method Details

    • is

      void is(String job, String state)
    • not

      void not()
    • and

      void and()
    • or

      void or()
    • getResult

      T getResult()