Sha256: 85748e43cbf356a59b646f16aa772fceeca9cc505dbe56e62470c24795d67966
Contents?: true
Size: 622 Bytes
Versions: 164
Compression:
Stored size: 622 Bytes
Contents
package sh.calaba.org.codehaus.jackson.map; import java.io.IOException; import sh.calaba.org.codehaus.jackson.JsonGenerator; import sh.calaba.org.codehaus.jackson.JsonProcessingException; /** * Interface that is to replace {@link JsonSerializable} to * allow for dynamic type information embedding. * * @since 1.5 * @author tatu */ @SuppressWarnings("deprecation") public interface JsonSerializableWithType extends JsonSerializable { public void serializeWithType(JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException, JsonProcessingException; }
Version data entries
164 entries across 164 versions & 2 rubygems