Interface JsonNodeProvider

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface JsonNodeProvider
Interface to be implemented by an azure-core plugin that wishes to provide a JsonNode implementation.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T extends JsonNode>
    T
    Creates a JsonNode from the passed value.
  • Method Details

    • createInstance

      <T extends JsonNode> T createInstance(Object value)
      Creates a JsonNode from the passed value.
      Type Parameters:
      T - Generic type of JsonNode.
      Parameters:
      value - Value to turn into a JsonNode.
      Returns:
      A JsonNode representation of the object.