argo.jdom
Interface JsonNodeBuilder<T extends JsonNode>

Type Parameters:
T - the type of JsonNode that will be built.
All Known Implementing Classes:
JsonArrayNodeBuilder, JsonObjectNodeBuilder, JsonStringNode

public interface JsonNodeBuilder<T extends JsonNode>

Classes that implement JsonNodeBuilder provide methods for specifying details of a JsonNode and then constructing it.


Method Summary
 T build()
          Generates an instance of T, as specified by calls to any other methods provided by implementations of JsonNodeBuilder.
 

Method Detail

build

T build()
Generates an instance of T, as specified by calls to any other methods provided by implementations of JsonNodeBuilder.

Returns:
an instance of T.