Interface ResultDataVisitor

  • All Implemented Interfaces:

    
    public interface ResultDataVisitor<T>
    
                        

    The interface ResultDataVisitor represents a visitor for result data from samples processing.

    Since:

    3.0

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract T visitListResult(ListResultData listResult) Visits the specified list result.
      abstract T visitMapResult(MapResultData mapResult) Visits the specified map result.
      abstract T visitValueResult(ValueResultData valueResult) Visits the specified value result.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • visitListResult

         abstract T visitListResult(ListResultData listResult)

        Visits the specified list result.

        Parameters:
        listResult - the list result
        Returns:

        the result of the visit

      • visitMapResult

         abstract T visitMapResult(MapResultData mapResult)

        Visits the specified map result.

        Parameters:
        mapResult - the map result
        Returns:

        the result of the visit

      • visitValueResult

         abstract T visitValueResult(ValueResultData valueResult)

        Visits the specified value result.

        Parameters:
        valueResult - the value result
        Returns:

        the result of the visit