Index

A B C E F G H I J K N O P R S T U V W 
All Classes and Interfaces|All Packages

A

addElement(boolean) - Method in class com.azure.json.models.JsonArray
Adds a boolean element to the JSON array.
addElement(int, boolean) - Method in class com.azure.json.models.JsonArray
Adds a boolean element to the JSON array at the specified index.
addElement(int, JsonElement) - Method in class com.azure.json.models.JsonArray
Adds a JsonElement to the JSON array at the specified index.
addElement(int, Number) - Method in class com.azure.json.models.JsonArray
Adds a number element to the JSON array at the specified index.
addElement(int, String) - Method in class com.azure.json.models.JsonArray
Adds a string element to the JSON array at the specified index.
addElement(JsonElement) - Method in class com.azure.json.models.JsonArray
Adds a JsonElement to the JSON array.
addElement(Number) - Method in class com.azure.json.models.JsonArray
Adds a number element to the JSON array.
addElement(String) - Method in class com.azure.json.models.JsonArray
Adds a string element to the JSON array.
ARRAY - Enum constant in enum com.azure.json.JsonWriteState
In a JSON array.
asArray() - Method in class com.azure.json.models.JsonElement
Casts the element to an array.
asBoolean() - Method in class com.azure.json.models.JsonElement
Casts the element to a boolean.
asNull() - Method in class com.azure.json.models.JsonElement
Casts the element to a null.
asNumber() - Method in class com.azure.json.models.JsonElement
Casts the element to a number.
asObject() - Method in class com.azure.json.models.JsonElement
Casts the element to an object.
asString() - Method in class com.azure.json.models.JsonElement
Casts the element to a string.
Azure JSON shared library for Java - Search tag in Overview
Section

B

BOOLEAN - Enum constant in enum com.azure.json.JsonToken
Boolean false, literal false.
bufferObject() - Method in class com.azure.json.JsonReader
Reads and returns the current JSON object the JsonReader is pointing to.

C

close() - Method in class com.azure.json.JsonReader
Closes the JSON stream.
close() - Method in class com.azure.json.JsonWriter
Closes the JSON stream.
com.azure.json - package com.azure.json
The Azure JSON library provides interfaces for stream-style JSON reading and writing.
com.azure.json.models - package com.azure.json.models
This package contains models for representing JSON as a tree structure.
COMPLETED - Enum constant in enum com.azure.json.JsonWriteState
JSON stream has completed.
COMPLETED - Static variable in class com.azure.json.JsonWriteContext
Final writing context.
Contributing - Search tag in Overview
Section
createReader(byte[]) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a byte[].
createReader(byte[], JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonReader that reads a byte[].
createReader(byte[], JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a byte[].
createReader(InputStream) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a InputStream.
createReader(InputStream, JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonReader that reads a InputStream.
createReader(InputStream, JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a InputStream.
createReader(Reader) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a Reader.
createReader(Reader, JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonReader that reads a Reader.
createReader(Reader, JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a Reader.
createReader(String) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a String.
createReader(String, JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonReader that reads a String.
createReader(String, JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonReader that reads a String.
createWriter(OutputStream) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonWriter that writes to an OutputStream.
createWriter(OutputStream, JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonWriter that writes to an OutputStream.
createWriter(OutputStream, JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonWriter that writes to an OutputStream.
createWriter(Writer) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonWriter that writes to an Writer.
createWriter(Writer, JsonOptions) - Method in interface com.azure.json.JsonProvider
Creates an instance of JsonWriter that writes to an Writer.
createWriter(Writer, JsonOptions) - Static method in class com.azure.json.JsonProviders
Creates an instance of JsonWriter that writes to an Writer.
currentToken() - Method in class com.azure.json.JsonReader
Gets the JsonToken that the reader currently points.

E

END_ARRAY - Enum constant in enum com.azure.json.JsonToken
End of a JSON array, ']'.
END_DOCUMENT - Enum constant in enum com.azure.json.JsonToken
JSON document has completed.
END_OBJECT - Enum constant in enum com.azure.json.JsonToken
End of a JSON object, '}'.
Examples - Search tag in Overview
Section

F

FIELD - Enum constant in enum com.azure.json.JsonWriteState
In a JSON field.
FIELD_NAME - Enum constant in enum com.azure.json.JsonToken
Name of a JSON property.
flush() - Method in class com.azure.json.JsonWriter
Flushes any un-flushed content written to this writer.
fromJson(byte[]) - Static method in interface com.azure.json.JsonSerializable
Convenience method for reading a JSON byte array into an object.
fromJson(JsonReader) - Static method in interface com.azure.json.JsonSerializable
Reads a JSON stream into an object.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonArray
Deserializes a JSON array from a JsonReader.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonBoolean
Deserializes a JSON boolean from a JsonReader.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonNull
Deserializes a JSON null from a JsonReader.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonNumber
Deserializes a JSON number from a JsonReader.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonObject
Deserializes a JSON object from a JsonReader.
fromJson(JsonReader) - Static method in class com.azure.json.models.JsonString
Deserializes a JSON string from a JsonReader.
fromJson(InputStream) - Static method in interface com.azure.json.JsonSerializable
Convenience method for reading a JSON InputStream into an object.
fromJson(Reader) - Static method in interface com.azure.json.JsonSerializable
Convenience method for reading a JSON Reader into an object.
fromJson(String) - Static method in interface com.azure.json.JsonSerializable
Convenience method for reading a JSON string into an object.

G

getBinary() - Method in class com.azure.json.JsonReader
Gets the binary value if the reader is currently pointing to a JsonToken.STRING token.
getBoolean() - Method in class com.azure.json.JsonReader
Gets the boolean value if the reader is currently pointing to a JsonToken.BOOLEAN token.
getDouble() - Method in class com.azure.json.JsonReader
Gets the double value if the reader is currently pointing to a JsonToken.NUMBER or JsonToken.STRING.
getElement(int) - Method in class com.azure.json.models.JsonArray
Gets the JsonElement at the specified index from the JsonArray.
getFieldName() - Method in class com.azure.json.JsonReader
Gets the field name if the reader is currently pointing to a JsonToken.FIELD_NAME.
getFloat() - Method in class com.azure.json.JsonReader
Gets the float value if the reader is currently pointing to a JsonToken.NUMBER or JsonToken.STRING.
getInstance() - Static method in class com.azure.json.models.JsonNull
Gets the instance of the JsonNull class.
getInstance(boolean) - Static method in class com.azure.json.models.JsonBoolean
Gets the instance of JsonBoolean for the specified boolean value.
getInt() - Method in class com.azure.json.JsonReader
Gets the int value if the reader is currently pointing to a JsonToken.NUMBER or JsonToken.STRING.
getLong() - Method in class com.azure.json.JsonReader
Gets the long value if the reader is currently pointing to a JsonToken.NUMBER or JsonToken.STRING.
getNullable(ReadValueCallback<JsonReader, T>) - Method in class com.azure.json.JsonReader
Convenience method to read a nullable type.
getParent() - Method in class com.azure.json.JsonWriteContext
Gets the parent JsonWriteContext.
getProperty(String) - Method in class com.azure.json.models.JsonObject
Gets the JsonElement value corresponding to the specified key.
getRawText() - Method in class com.azure.json.JsonReader
Gets the raw text value for the JsonReader.currentToken().
getString() - Method in class com.azure.json.JsonReader
Gets the String value if the reader is currently pointing to a JsonToken.BOOLEAN, JsonToken.NULL, JsonToken.NUMBER, or JsonToken.STRING.
getText() - Method in class com.azure.json.JsonReader
Gets the text value for the JsonReader.currentToken().
Getting started - Search tag in Overview
Section
Getting Started - Search tag in package com.azure.json
Section
getValue() - Method in class com.azure.json.models.JsonBoolean
Returns boolean value from a JsonBoolean object.
getValue() - Method in class com.azure.json.models.JsonNumber
Returns the Number value from a JsonNumber object.
getValue() - Method in class com.azure.json.models.JsonString
Gets the string value of this JsonString object.
getWriteContext() - Method in class com.azure.json.JsonWriter
Gets the current writing context for the JSON object.
getWriteState() - Method in class com.azure.json.JsonWriteContext
Gets the JsonWriteState associated to the writing context.

H

hasProperty(String) - Method in class com.azure.json.models.JsonObject
Checks whether a property with the specified key exists in the JSON object.

I

Include the package - Search tag in Overview
Section
isArray() - Method in class com.azure.json.models.JsonArray
 
isArray() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is an array.
isBoolean() - Method in class com.azure.json.models.JsonBoolean
Identifies if an object is of type JsonBoolean.
isBoolean() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is a boolean.
isEndArrayOrObject() - Method in class com.azure.json.JsonReader
isJsoncSupported() - Method in class com.azure.json.JsonOptions
Whether JSONC (JSON with comments) is supported.
isNonNumericNumbersSupported() - Method in class com.azure.json.JsonOptions
Whether non-numeric numbers such as NaN, Infinity, +Infinity and -Infinity are supported.
isNull() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is a null.
isNull() - Method in class com.azure.json.models.JsonNull
Identifies if a JsonElement is of type JsonNull.
isNumber() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is a number.
isNumber() - Method in class com.azure.json.models.JsonNumber
Whether the JsonElement is a JsonNumber.
isObject() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is an object.
isObject() - Method in class com.azure.json.models.JsonObject
 
isResetSupported() - Method in class com.azure.json.JsonReader
Indicates whether the JsonReader supports resetting.
isStartArrayOrObject() - Method in class com.azure.json.JsonReader
isString() - Method in class com.azure.json.models.JsonElement
Indicates whether the element is a string.
isString() - Method in class com.azure.json.models.JsonString
 

J

JsonArray - Class in com.azure.json.models
Model representing a JSON array.
JsonArray() - Constructor for class com.azure.json.models.JsonArray
Default constructor.
JsonBoolean - Class in com.azure.json.models
Model representing a JSON boolean value.
JsonElement - Class in com.azure.json.models
Interface defining methods that all JSON types must implement.
JsonElement() - Constructor for class com.azure.json.models.JsonElement
Default constructor.
JsonNull - Class in com.azure.json.models
Model representing a JSON null value.
JsonNumber - Class in com.azure.json.models
Class representing the JSON number type
JsonNumber(Number) - Constructor for class com.azure.json.models.JsonNumber
Creates a JsonNumber representing the specified number.
JsonObject - Class in com.azure.json.models
Class representing the JSON object type.
JsonObject() - Constructor for class com.azure.json.models.JsonObject
Default constructor.
JsonOptions - Search tag in Overview
Section
JsonOptions - Class in com.azure.json
Contains configuration options for creating a JsonReader or JsonWriter.
JsonOptions() - Constructor for class com.azure.json.JsonOptions
Creates an instance of JsonOptions.
JsonProvider - Search tag in Overview
Section
JsonProvider - Interface in com.azure.json
An interface to be implemented by any azure-json plugin that wishes to provide an alternate JsonReader or JsonWriter implementation.
JsonProviders - Class in com.azure.json
Utility class for JsonProvider that will use the implementation of JsonProvider found on the classpath to create instances of JsonReader or JsonWriter.
JsonReader - Search tag in Overview
Section
JsonReader - Class in com.azure.json
Reads a JSON value as a stream of tokens.
JsonReader() - Constructor for class com.azure.json.JsonReader
Creates an instance of JsonReader.
JsonSerializable - Search tag in Overview
Section
JsonSerializable<T> - Interface in com.azure.json
Indicates that the implementing class can be serialized to and deserialized from JSON.
JSON State Management - Search tag in Overview
Section
JsonString - Class in com.azure.json.models
Class representing the JSON string type
JsonString(String) - Constructor for class com.azure.json.models.JsonString
Constructor used to explicitly set the string value of the JsonString object.
JsonToken - Search tag in Overview
Section
JsonToken - Enum in com.azure.json
Token types used when reading JSON content.
JsonWriteContext - Class in com.azure.json
Context of JSON handling.
JsonWriter - Search tag in Overview
Section
JsonWriter - Class in com.azure.json
Writes a JSON value as a stream of tokens.
JsonWriter() - Constructor for class com.azure.json.JsonWriter
Creates an instance of JsonWriter.
JsonWriteState - Enum in com.azure.json
Writing context of the JSON stream.

K

Key concepts - Search tag in Overview
Section

N

Nesting Limits - Search tag in Overview
Section
Next steps - Search tag in Overview
Section
nextToken() - Method in class com.azure.json.JsonReader
Iterates to and returns the next JsonToken in the JSON encoded value.
NULL - Enum constant in enum com.azure.json.JsonToken
Null, literal null.
NUMBER - Enum constant in enum com.azure.json.JsonToken
Number.

O

OBJECT - Enum constant in enum com.azure.json.JsonWriteState
In a JSON object.

P

Prerequisites - Search tag in Overview
Section
Providing an SPI implementation - Search tag in Overview
Section

R

read(T) - Method in interface com.azure.json.ReadValueCallback
Applies the read callback to the input.
readArray(ReadValueCallback<JsonReader, T>) - Method in class com.azure.json.JsonReader
Reads a JSON array.
readChildren() - Method in class com.azure.json.JsonReader
Recursively reads the JSON token sub-stream if the current token is either JsonToken.START_ARRAY or JsonToken.START_OBJECT.
readChildren(StringBuilder) - Method in class com.azure.json.JsonReader
Recursively reads the JSON token sub-stream if the current token is either JsonToken.START_ARRAY or JsonToken.START_OBJECT into the passed StringBuilder.
Reading and Writing JSON - Search tag in package com.azure.json
Section
readMap(ReadValueCallback<JsonReader, T>) - Method in class com.azure.json.JsonReader
Reads a JSON map.
readObject(ReadValueCallback<JsonReader, T>) - Method in class com.azure.json.JsonReader
Reads a JSON object.
readRemainingFieldsAsJsonObject() - Method in class com.azure.json.JsonReader
Reads the remaining fields in the current JSON object as a JSON object.
readRemainingFieldsAsJsonObject(StringBuilder) - Method in class com.azure.json.JsonReader
Reads the remaining fields in the current JSON object as a JSON object.
readUntyped() - Method in class com.azure.json.JsonReader
Reads an untyped object.
ReadValueCallback<T,R> - Interface in com.azure.json
A callback used when reading a JSON value, such as JsonReader.readArray(ReadValueCallback).
removeElement(int) - Method in class com.azure.json.models.JsonArray
Removes the JsonElement at the specified index from the JsonArray.
removeProperty(String) - Method in class com.azure.json.models.JsonObject
Removes the JsonElement value corresponding to the specified key.
reset() - Method in class com.azure.json.JsonReader
Creates a new JsonReader reset to the beginning of the JSON stream.
ROOT - Enum constant in enum com.azure.json.JsonWriteState
Root of the JSON stream.
ROOT - Static variable in class com.azure.json.JsonWriteContext
Initial writing context.

S

setElement(int, boolean) - Method in class com.azure.json.models.JsonArray
Sets a specified boolean element at a specified index within the JsonArray.
setElement(int, JsonElement) - Method in class com.azure.json.models.JsonArray
Sets a specified JsonElement object at a specified index within the JsonArray.
setElement(int, Number) - Method in class com.azure.json.models.JsonArray
Sets a specified number element at a specified index within the JsonArray.
setElement(int, String) - Method in class com.azure.json.models.JsonArray
Sets a specified string element at a specified index within the JsonArray.
setJsoncSupported(boolean) - Method in class com.azure.json.JsonOptions
Sets whether JSONC (JSON with comments) is supported.
setNonNumericNumbersSupported(boolean) - Method in class com.azure.json.JsonOptions
Whether non-numeric numbers such as NaN, Infinity, +Infinity and -Infinity are supported.
setProperty(String, boolean) - Method in class com.azure.json.models.JsonObject
Sets the boolean value corresponding to the specified key.
setProperty(String, JsonElement) - Method in class com.azure.json.models.JsonObject
Sets the JsonElement value corresponding to the specified key.
setProperty(String, Number) - Method in class com.azure.json.models.JsonObject
Sets the number value corresponding to the specified key.
setProperty(String, String) - Method in class com.azure.json.models.JsonObject
Sets the string value corresponding to the specified key.
size() - Method in class com.azure.json.models.JsonArray
The number of elements in the JsonArray.
size() - Method in class com.azure.json.models.JsonObject
The number of properties in the JSON object.
skipChildren() - Method in class com.azure.json.JsonReader
Recursively skips the JSON token sub-stream if the current token is either JsonToken.START_ARRAY or JsonToken.START_OBJECT.
START_ARRAY - Enum constant in enum com.azure.json.JsonToken
Start of a JSON array, '['.
START_OBJECT - Enum constant in enum com.azure.json.JsonToken
Start of a JSON object, '{'.
STRING - Enum constant in enum com.azure.json.JsonToken
String, in value context.

T

toJson(JsonWriter) - Method in interface com.azure.json.JsonSerializable
Writes the object to the passed JsonWriter.
toJson(JsonWriter) - Method in class com.azure.json.models.JsonArray
 
toJson(JsonWriter) - Method in class com.azure.json.models.JsonBoolean
 
toJson(JsonWriter) - Method in class com.azure.json.models.JsonNull
 
toJson(JsonWriter) - Method in class com.azure.json.models.JsonNumber
 
toJson(JsonWriter) - Method in class com.azure.json.models.JsonObject
 
toJson(JsonWriter) - Method in class com.azure.json.models.JsonString
 
toJson(OutputStream) - Method in interface com.azure.json.JsonSerializable
Convenience method for writing the JsonSerializable to the passed OutputStream.
toJson(Writer) - Method in interface com.azure.json.JsonSerializable
Convenience method for writing the JsonSerializable to the passed Writer.
toJsonBytes() - Method in interface com.azure.json.JsonSerializable
Convenience method for writing the JsonSerializable to a byte array.
toJsonString() - Method in interface com.azure.json.JsonSerializable
Convenience method for writing the JsonSerializable to a JSON string.
toJsonString() - Method in class com.azure.json.models.JsonArray
 
toJsonString() - Method in class com.azure.json.models.JsonBoolean
 
toJsonString() - Method in class com.azure.json.models.JsonNull
 
toJsonString() - Method in class com.azure.json.models.JsonNumber
 
toJsonString() - Method in class com.azure.json.models.JsonObject
 
toJsonString() - Method in class com.azure.json.models.JsonString
 
Troubleshooting - Search tag in Overview
Section

U

updateContext(JsonToken) - Method in class com.azure.json.JsonWriteContext
Updates the context based on the JsonToken that was written.

V

validateToken(JsonToken) - Method in class com.azure.json.JsonWriteContext
Determines whether the JsonToken is allowed to be written based on the JsonWriteState.
valueOf(String) - Static method in enum com.azure.json.JsonToken
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.azure.json.JsonWriteState
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.azure.json.JsonToken
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.azure.json.JsonWriteState
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(T, U) - Method in interface com.azure.json.WriteValueCallback
Applies the write callback to input1 and input2.
writeArray(Iterable<T>, WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON array.
writeArray(Iterable<T>, WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON array.
writeArray(T[], WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON array.
writeArray(T[], WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON array.
writeArrayField(String, Iterable<T>, WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON array field.
writeArrayField(String, Iterable<T>, WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON array field.
writeArrayField(String, T[], WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON array field.
writeArrayField(String, T[], WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON array field.
writeBinary(byte[]) - Method in class com.azure.json.JsonWriter
Writes a JSON binary value.
writeBinaryField(String, byte[]) - Method in class com.azure.json.JsonWriter
Writes a JSON binary field.
writeBoolean(boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON boolean value (true or false).
writeBoolean(Boolean) - Method in class com.azure.json.JsonWriter
Writes a nullable JSON boolean value (true, false, or null).
writeBooleanField(String, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON boolean field.
writeBooleanField(String, Boolean) - Method in class com.azure.json.JsonWriter
Writes a nullable JSON boolean field.
writeDouble(double) - Method in class com.azure.json.JsonWriter
Writes a JSON double value.
writeDoubleField(String, double) - Method in class com.azure.json.JsonWriter
Writes a JSON double field.
writeEndArray() - Method in class com.azure.json.JsonWriter
Writes a JSON end array (]).
writeEndObject() - Method in class com.azure.json.JsonWriter
Writes a JSON end object (&#125;).
writeFieldName(String) - Method in class com.azure.json.JsonWriter
Writes a JSON field name ("fieldName":).
writeFloat(float) - Method in class com.azure.json.JsonWriter
Writes a JSON float value.
writeFloatField(String, float) - Method in class com.azure.json.JsonWriter
Writes a JSON float field.
writeInt(int) - Method in class com.azure.json.JsonWriter
Writes a JSON int value.
writeIntField(String, int) - Method in class com.azure.json.JsonWriter
Writes a JSON int field.
writeJson(JsonSerializable<?>) - Method in class com.azure.json.JsonWriter
Writes a JsonSerializable object.
writeJsonField(String, JsonSerializable<?>) - Method in class com.azure.json.JsonWriter
Writes a JsonSerializable field.
writeLong(long) - Method in class com.azure.json.JsonWriter
Writes a JSON long value.
writeLongField(String, long) - Method in class com.azure.json.JsonWriter
Writes a JSON long field.
writeMap(Map<String, T>, WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON map.
writeMap(Map<String, T>, WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON map.
writeMapField(String, Map<String, T>, WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a JSON map field.
writeMapField(String, Map<String, T>, WriteValueCallback<JsonWriter, T>, boolean) - Method in class com.azure.json.JsonWriter
Writes a JSON map field.
writeNull() - Method in class com.azure.json.JsonWriter
Writes a JSON null.
writeNullableField(String, T, WriteValueCallback<JsonWriter, T>) - Method in class com.azure.json.JsonWriter
Writes a nullable JSON field.
writeNullField(String) - Method in class com.azure.json.JsonWriter
Writes a JSON null field ("fieldName":null).
writeNumber(Number) - Method in class com.azure.json.JsonWriter
Writes a nullable JSON number value.
writeNumberField(String, Number) - Method in class com.azure.json.JsonWriter
Writes a nullable JSON number field.
writeRawField(String, String) - Method in class com.azure.json.JsonWriter
Writes the passed field literally without any additional handling.
writeRawValue(String) - Method in class com.azure.json.JsonWriter
Writes the passed value literally without any additional handling.
writeStartArray() - Method in class com.azure.json.JsonWriter
Writes a JSON start array ([).
writeStartArray(String) - Method in class com.azure.json.JsonWriter
Writes a JSON start array ([) with a preceding field name.
writeStartObject() - Method in class com.azure.json.JsonWriter
Writes a JSON start object (&#123;).
writeStartObject(String) - Method in class com.azure.json.JsonWriter
Writes a JSON start object (&#123;) with a preceding field name.
writeString(String) - Method in class com.azure.json.JsonWriter
Writes a JSON String value.
writeStringField(String, String) - Method in class com.azure.json.JsonWriter
Writes a JSON String field.
writeUntyped(Object) - Method in class com.azure.json.JsonWriter
Writes the unknown type value.
writeUntypedField(String, Object) - Method in class com.azure.json.JsonWriter
Writes the unknown type value field.
WriteValueCallback<T,U> - Interface in com.azure.json
A callback used when writing a JSON value, such as JsonWriter.writeArray(Object[], WriteValueCallback).
A B C E F G H I J K N O P R S T U V W 
All Classes and Interfaces|All Packages