Class TemplatedUrl

  • All Implemented Interfaces:

    
    public final class TemplatedUrl
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Unit set(String key, String value) Saves the given key:value pair in the map.
      final URI resolve() Resolve the template with the current map.
      final URI resolve(String key, String value) Resolve the template with the current map and a new key:value pair (does not save the new pair).
      final URI resolve(Map<String, String> newMap) Resolve the template with the current map and a new map pair (does not save the new map).
      • Methods inherited from class java.lang.Object

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

      • resolve

         final URI resolve()

        Resolve the template with the current map.

      • resolve

         final URI resolve(String key, String value)

        Resolve the template with the current map and a new key:value pair (does not save the new pair).

      • resolve

         final URI resolve(Map<String, String> newMap)

        Resolve the template with the current map and a new map pair (does not save the new map).