Interface ColumnObserverParser


  • public interface ColumnObserverParser
    An observer to a parser; this observer allows checking both the name of an entity and the fields. This observer might be used to the mapper process.
    • Method Detail

      • fireEntity

        default String fireEntity​(String entity)
        Fire an event to entity name
        Parameters:
        entity - the entity
        Returns:
        the field result
        Throws:
        NullPointerException - when the entity is null
      • fireField

        default String fireField​(String entity,
                                 String field)
        Fire an event to each field in case of mapper process
        Parameters:
        field - the field
        entity - the entity
        Returns:
        the field result
        Throws:
        NullPointerException - when there is null parameter