All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vulpine.lib.json.schema.SchemaBuilder Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.vulpine.lib.json.schema;

import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.JsonNode;

/**
 * @since 2.0
 */
public interface SchemaBuilder
{
  /**
   * Returns a constructed JsonNode representation of the builder state.
   * 

* Modification of the returned JsonNode must not modify any internal state * for the {@link SchemaBuilder}. * * @return constructed JsonNode instance. * * @since 2.0 */ @JsonValue JsonNode build(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy