Interface ParserAction

All Known Implementing Classes:
NormalParserAction, ParserActionBase, PrefixParserAction

public interface ParserAction
  • Method Summary

    Modifier and Type
    Method
    Description
    Apply this action to props and return the result.
    Return the field name in an object that is set with the result
    Return the property name or prefix for which this action is applied.
    boolean
    Return whether this action is for an exact match or a prefix match (true).
  • Method Details

    • getPropertyName

      String getPropertyName()
      Return the property name or prefix for which this action is applied.
    • isPrefix

      boolean isPrefix()
      Return whether this action is for an exact match or a prefix match (true).
    • getFieldName

      String getFieldName()
      Return the field name in an object that is set with the result
    • apply

      Object apply(Properties props)
      Apply this action to props and return the result.