Class JSONPObject

java.lang.Object
com.fasterxml.jackson.databind.util.JSONPObject
All Implemented Interfaces:
JsonSerializable

public class JSONPObject extends Object implements JsonSerializable
Container class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.
See Also:
  • Field Details

    • _function

      protected final String _function
      JSONP function name to use for serialization
    • _value

      protected final Object _value
      Value to be serialized as JSONP padded; can be null.
    • _serializationType

      protected final JavaType _serializationType
      Optional static type to use for serialization; if null, runtime type is used. Can be used to specify declared type which defines serializer to use, as well as aspects of extra type information to include (if any).
  • Constructor Details

  • Method Details