Interface PathElementProvider

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default String getKey()
      Convenience method returning the key of the provided path.
      default String getValue()
      Convenience method returning the value of the provided path.
      default boolean isWildcard()
      Convenience method indicating whether or not the provided path uses a "*" value.
      • Methods inherited from interface java.util.function.Supplier

        get
    • Method Detail

      • getKey

        default String getKey()
        Convenience method returning the key of the provided path.
        Returns:
        the path key
      • getValue

        default String getValue()
        Convenience method returning the value of the provided path.
        Returns:
        the path value
      • isWildcard

        default boolean isWildcard()
        Convenience method indicating whether or not the provided path uses a "*" value.
        Returns:
        true, if the provided path uses a "*" value, false otherwise.