Interface RuleParameterValueMapper<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T fromString​(java.lang.String value)
      Maps the String representation to the specific object.
      java.lang.String toString​(T value)
      Maps the object to its String representation.
    • Method Detail

      • toString

        java.lang.String toString​(T value)
        Maps the object to its String representation.
        Parameters:
        value - - object to map
        Returns:
        String representation
      • fromString

        T fromString​(java.lang.String value)
        Maps the String representation to the specific object.
        Parameters:
        value - - String representation
        Returns:
        mapped object