Uses of Interface
com.azure.json.JsonSerializable
Packages that use JsonSerializable
Package
Description
The Azure JSON library provides interfaces for stream-style JSON reading and writing.
This package contains models for representing JSON as a tree structure.
-
Uses of JsonSerializable in com.azure.json
Classes in com.azure.json with type parameters of type JsonSerializableModifier and TypeInterfaceDescriptioninterfaceJsonSerializable<T extends JsonSerializable<T>>Indicates that the implementing class can be serialized to and deserialized from JSON.Methods in com.azure.json with type parameters of type JsonSerializableModifier and TypeMethodDescriptionstatic <T extends JsonSerializable<T>>
TJsonSerializable.fromJson(byte[] bytes) Convenience method for reading a JSON byte array into an object.static <T extends JsonSerializable<T>>
TJsonSerializable.fromJson(JsonReader jsonReader) Reads a JSON stream into an object.static <T extends JsonSerializable<T>>
TJsonSerializable.fromJson(InputStream inputStream) Convenience method for reading a JSONInputStreaminto an object.static <T extends JsonSerializable<T>>
TConvenience method for reading a JSONReaderinto an object.static <T extends JsonSerializable<T>>
TConvenience method for reading a JSON string into an object.Methods in com.azure.json with parameters of type JsonSerializableModifier and TypeMethodDescriptionfinal JsonWriterJsonWriter.writeJson(JsonSerializable<?> value) Writes aJsonSerializableobject.final JsonWriterJsonWriter.writeJsonField(String fieldName, JsonSerializable<?> value) Writes aJsonSerializablefield. -
Uses of JsonSerializable in com.azure.json.models
Classes in com.azure.json.models that implement JsonSerializableModifier and TypeClassDescriptionfinal classModel representing a JSON array.final classModel representing a JSON boolean value.classInterface defining methods that all JSON types must implement.final classModel representing a JSON null value.final classClass representing the JSON number typefinal classClass representing the JSON object type.final classClass representing the JSON string type