Interface IEntityJsonContext
-
- All Known Subinterfaces:
IEntityJsonInstanceContext,IEntityJsonSchemaContext
public interface IEntityJsonContextA generic parser context.- Author:
- Bruce Skingle
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntityJsonInstanceContextwithInstance(Object instanceSource, com.fasterxml.jackson.databind.node.ObjectNode instanceJsonNode)Add the given instance and return the current object as an IEntityJsonInstanceContext.
-
-
-
Method Detail
-
withInstance
IEntityJsonInstanceContext withInstance(Object instanceSource, com.fasterxml.jackson.databind.node.ObjectNode instanceJsonNode)
Add the given instance and return the current object as an IEntityJsonInstanceContext.- Parameters:
instanceSource- An object describing the source of the instance, typically an instance of java.net.URL or java.io.File.instanceJsonNode- The instance.- Returns:
- The current object as an IEntityJsonInstanceContext.
- Throws:
NullPointerException- if either parameter is null.
-
-