Interface AdaptyUiTagResolver

  • All Implemented Interfaces:

    
    public interface AdaptyUiTagResolver
    
                        

    Implement this interface to specify the string values with which custom tags should be replaced

    • 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 String replacement(String tag) A function that maps a custom tag to the string value it should be replaced with.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • replacement

         abstract String replacement(String tag)

        A function that maps a custom tag to the string value it should be replaced with. If null is returned, the tag will not be replaced.

        Parameters:
        tag - The custom tag to be replaced.