azure-docs-sdk-java/docs-ref-autogen/com.microsoft.azure.documen...

374 строки
24 KiB
YAML

### YamlMime:JavaType
uid: "com.microsoft.azure.documentdb.JsonSerializable"
fullName: "com.microsoft.azure.documentdb.JsonSerializable"
name: "JsonSerializable"
nameWithType: "JsonSerializable"
summary: "Represents a base resource that can be serialized to JSON in the Azure Cosmos DB database service."
inheritances:
- "<xref href=\"java.lang.Object?displayProperty=fullName\" data-throw-if-not-resolved=\"False\" />"
inheritedClassMethods:
- classRef: "<xref href=\"java.lang.Object?alt=java.lang.Object&text=Object\" data-throw-if-not-resolved=\"False\" />"
methodsRef:
- "<xref href=\"java.lang.Object.clone()?alt=java.lang.Object.clone&text=clone\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.equals(java.lang.Object)?alt=java.lang.Object.equals&text=equals\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.finalize()?alt=java.lang.Object.finalize&text=finalize\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.getClass()?alt=java.lang.Object.getClass&text=getClass\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.hashCode()?alt=java.lang.Object.hashCode&text=hashCode\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.notify()?alt=java.lang.Object.notify&text=notify\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.notifyAll()?alt=java.lang.Object.notifyAll&text=notifyAll\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.toString()?alt=java.lang.Object.toString&text=toString\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait()?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait(long)?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait(long,int)?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
syntax: "public class **JsonSerializable**</br> implements <xref href=\"java.io.Serializable?alt=java.io.Serializable&text=Serializable\" data-throw-if-not-resolved=\"False\" />"
constructors:
- uid: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable()"
name: "JsonSerializable()"
nameWithType: "JsonSerializable.JsonSerializable()"
modifiers:
- "protected"
syntax: "protected JsonSerializable()"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(String jsonString)"
name: "JsonSerializable(String jsonString)"
nameWithType: "JsonSerializable.JsonSerializable(String jsonString)"
summary: "Constructor."
modifiers:
- "protected"
parameters:
- description: "the json string that represents the JsonSerializable."
name: "jsonString"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "protected JsonSerializable(String jsonString)"
desc: "Constructor."
- uid: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(java.lang.String,com.fasterxml.jackson.databind.ObjectMapper)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)"
name: "JsonSerializable(String jsonString, ObjectMapper objectMapper)"
nameWithType: "JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)"
summary: "Constructor."
modifiers:
- "protected"
parameters:
- description: "the json string that represents the JsonSerializable."
name: "jsonString"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- description: "the custom object mapper"
name: "objectMapper"
type: "<xref href=\"com.fasterxml.jackson.databind.ObjectMapper?alt=com.fasterxml.jackson.databind.ObjectMapper&text=ObjectMapper\" data-throw-if-not-resolved=\"False\" />"
syntax: "protected JsonSerializable(String jsonString, ObjectMapper objectMapper)"
desc: "Constructor."
- uid: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(org.json.JSONObject)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.JsonSerializable(JSONObject jsonObject)"
name: "JsonSerializable(JSONObject jsonObject)"
nameWithType: "JsonSerializable.JsonSerializable(JSONObject jsonObject)"
summary: "Constructor."
modifiers:
- "protected"
parameters:
- description: "the json object that represents the JsonSerializable."
name: "jsonObject"
type: "<xref href=\"org.json.JSONObject?alt=org.json.JSONObject&text=JSONObject\" data-throw-if-not-resolved=\"False\" />"
syntax: "protected JsonSerializable(JSONObject jsonObject)"
desc: "Constructor."
methods:
- uid: "com.microsoft.azure.documentdb.JsonSerializable.<T>getCollection(java.lang.String,java.lang.Class<T>)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getCollection(String propertyName, Class<T> c)"
name: "getCollection(String propertyName, Class<T> c)"
nameWithType: "JsonSerializable.getCollection(String propertyName, Class<T> c)"
summary: "Gets an object collection."
parameters:
- description: "the property to get"
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- description: "the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)\n and a static one."
name: "c"
type: "<xref href=\"java.lang.Class?alt=java.lang.Class&text=Class\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />&gt;"
syntax: "public Collection<T> <T>getCollection(String propertyName, Class<T> c)"
desc: "Gets an object collection."
returns:
description: "the object collection."
type: "<xref href=\"java.util.Collection?alt=java.util.Collection&text=Collection\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />&gt;"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.<T>getObject(java.lang.String,java.lang.Class<T>)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getObject(String propertyName, Class<T> c)"
name: "getObject(String propertyName, Class<T> c)"
nameWithType: "JsonSerializable.getObject(String propertyName, Class<T> c)"
summary: "Gets an object value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- description: "the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)\n and a static one."
name: "c"
type: "<xref href=\"java.lang.Class?alt=java.lang.Class&text=Class\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />&gt;"
syntax: "public T <T>getObject(String propertyName, Class<T> c)"
desc: "Gets an object value."
returns:
description: "the object value."
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.<T>set(java.lang.String,T)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.set(String propertyName, T value)"
name: "set(String propertyName, T value)"
nameWithType: "JsonSerializable.set(String propertyName, T value)"
summary: "Sets the value of a property."
parameters:
- description: "the property to set."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- description: "the value of the property."
name: "value"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
syntax: "public void <T>set(String propertyName, T value)"
desc: "Sets the value of a property."
- uid: "com.microsoft.azure.documentdb.JsonSerializable.<T>toObject(java.lang.Class<T>)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.toObject(Class<T> c)"
name: "toObject(Class<T> c)"
nameWithType: "JsonSerializable.toObject(Class<T> c)"
summary: "Converts to an Object (only POJOs and JSONObject are supported)."
parameters:
- description: "the class of the object, either a POJO class or JSONObject. If c is a POJO class, it must be a member\n (and not an anonymous or local) and a static one."
name: "c"
type: "<xref href=\"java.lang.Class?alt=java.lang.Class&text=Class\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />&gt;"
syntax: "public T <T>toObject(Class<T> c)"
desc: "Converts to an Object (only POJOs and JSONObject are supported)."
returns:
description: "the POJO."
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.get(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.get(String propertyName)"
name: "get(String propertyName)"
nameWithType: "JsonSerializable.get(String propertyName)"
summary: "Gets a property value as Object."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Object get(String propertyName)"
desc: "Gets a property value as Object."
returns:
description: "the value of the property."
type: "<xref href=\"java.lang.Object?alt=java.lang.Object&text=Object\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getBoolean(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getBoolean(String propertyName)"
name: "getBoolean(String propertyName)"
nameWithType: "JsonSerializable.getBoolean(String propertyName)"
summary: "Gets a boolean value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Boolean getBoolean(String propertyName)"
desc: "Gets a boolean value."
returns:
description: "the boolean value."
type: "<xref href=\"java.lang.Boolean?alt=java.lang.Boolean&text=Boolean\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getCollection(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getCollection(String propertyName)"
name: "getCollection(String propertyName)"
nameWithType: "JsonSerializable.getCollection(String propertyName)"
summary: "Gets a JSONObject collection."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Collection<JSONObject> getCollection(String propertyName)"
desc: "Gets a JSONObject collection."
returns:
description: "the JSONObject collection."
type: "<xref href=\"java.util.Collection?alt=java.util.Collection&text=Collection\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"org.json.JSONObject?alt=org.json.JSONObject&text=JSONObject\" data-throw-if-not-resolved=\"False\" />&gt;"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getDouble(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getDouble(String propertyName)"
name: "getDouble(String propertyName)"
nameWithType: "JsonSerializable.getDouble(String propertyName)"
summary: "Gets a double value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Double getDouble(String propertyName)"
desc: "Gets a double value."
returns:
description: "the double value."
type: "<xref href=\"java.lang.Double?alt=java.lang.Double&text=Double\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getHashMap()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getHashMap()"
name: "getHashMap()"
nameWithType: "JsonSerializable.getHashMap()"
summary: "Returns the propertybag(JSONObject) in a hash<wbr>Map"
syntax: "public HashMap<String,Object> getHashMap()"
desc: "Returns the propertybag(JSONObject) in a hashMap"
returns:
description: "the HashMap."
type: "<xref href=\"java.util.HashMap?alt=java.util.HashMap&text=HashMap\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />,<xref href=\"java.lang.Object?alt=java.lang.Object&text=Object\" data-throw-if-not-resolved=\"False\" />&gt;"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getInt(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getInt(String propertyName)"
name: "getInt(String propertyName)"
nameWithType: "JsonSerializable.getInt(String propertyName)"
summary: "Gets an integer value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Integer getInt(String propertyName)"
desc: "Gets an integer value."
returns:
description: "the boolean value"
type: "<xref href=\"java.lang.Integer?alt=java.lang.Integer&text=Integer\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getLogger()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getLogger()"
name: "getLogger()"
nameWithType: "JsonSerializable.getLogger()"
modifiers:
- "protected"
syntax: "protected Logger getLogger()"
returns:
type: "<xref href=\"org.slf4j.Logger?alt=org.slf4j.Logger&text=Logger\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getLong(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getLong(String propertyName)"
name: "getLong(String propertyName)"
nameWithType: "JsonSerializable.getLong(String propertyName)"
summary: "Gets a long value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public Long getLong(String propertyName)"
desc: "Gets a long value."
returns:
description: "the long value"
type: "<xref href=\"java.lang.Long?alt=java.lang.Long&text=Long\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getMapper()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getMapper()"
name: "getMapper()"
nameWithType: "JsonSerializable.getMapper()"
modifiers:
- "protected"
syntax: "protected ObjectMapper getMapper()"
returns:
type: "<xref href=\"com.fasterxml.jackson.databind.ObjectMapper?alt=com.fasterxml.jackson.databind.ObjectMapper&text=ObjectMapper\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getObject(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getObject(String propertyName)"
name: "getObject(String propertyName)"
nameWithType: "JsonSerializable.getObject(String propertyName)"
summary: "Gets a JSONObject."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public JSONObject getObject(String propertyName)"
desc: "Gets a JSONObject."
returns:
description: "the JSONObject."
type: "<xref href=\"org.json.JSONObject?alt=org.json.JSONObject&text=JSONObject\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getObjectByPath(java.util.Collection<java.lang.String>)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getObjectByPath(Collection<String> propertyNames)"
name: "getObjectByPath(Collection<String> propertyNames)"
nameWithType: "JsonSerializable.getObjectByPath(Collection<String> propertyNames)"
summary: "Gets the value of a property identified by an array of property names that forms the path."
parameters:
- description: "that form the path to the the property to get."
name: "propertyNames"
type: "<xref href=\"java.util.Collection?alt=java.util.Collection&text=Collection\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />&gt;"
syntax: "public Object getObjectByPath(Collection<String> propertyNames)"
desc: "Gets the value of a property identified by an array of property names that forms the path."
returns:
description: "the value of the property."
type: "<xref href=\"java.lang.Object?alt=java.lang.Object&text=Object\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.getString(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.getString(String propertyName)"
name: "getString(String propertyName)"
nameWithType: "JsonSerializable.getString(String propertyName)"
summary: "Gets a string value."
parameters:
- description: "the property to get."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public String getString(String propertyName)"
desc: "Gets a string value."
returns:
description: "the string value."
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.has(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.has(String propertyName)"
name: "has(String propertyName)"
nameWithType: "JsonSerializable.has(String propertyName)"
summary: "Checks whether a property exists."
parameters:
- description: "the property to look up."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public boolean has(String propertyName)"
desc: "Checks whether a property exists."
returns:
description: "true if the property exists."
type: "<xref href=\"boolean?alt=boolean&text=boolean\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.remove(java.lang.String)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.remove(String propertyName)"
name: "remove(String propertyName)"
nameWithType: "JsonSerializable.remove(String propertyName)"
summary: "Removes a value by property<wbr>Name."
parameters:
- description: "the property to remove."
name: "propertyName"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public void remove(String propertyName)"
desc: "Removes a value by propertyName."
- uid: "com.microsoft.azure.documentdb.JsonSerializable.toJson()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.toJson()"
name: "toJson()"
nameWithType: "JsonSerializable.toJson()"
summary: "Converts to a JSON string."
syntax: "public String toJson()"
desc: "Converts to a JSON string."
returns:
description: "the JSON string."
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.toJson(com.microsoft.azure.documentdb.SerializationFormattingPolicy)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)"
name: "toJson(SerializationFormattingPolicy formattingPolicy)"
nameWithType: "JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)"
summary: "Converts to a JSON string."
parameters:
- description: "the formatting policy instance"
name: "formattingPolicy"
type: "<xref href=\"com.microsoft.azure.documentdb.SerializationFormattingPolicy?alt=com.microsoft.azure.documentdb.SerializationFormattingPolicy&text=SerializationFormattingPolicy\" data-throw-if-not-resolved=\"False\" />"
syntax: "public String toJson(SerializationFormattingPolicy formattingPolicy)"
desc: "Converts to a JSON string."
returns:
description: "the JSON string."
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.toString()"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.toString()"
name: "toString()"
nameWithType: "JsonSerializable.toString()"
summary: "Gets Simple String representation of property bag."
overridden: "java.lang.Object.toString()"
syntax: "public String toString()"
desc: "Gets Simple String representation of property bag. For proper conversion to json and inclusion of the default values use <xref uid=\"com.microsoft.azure.documentdb.JsonSerializable.toJson()\" data-throw-if-not-resolved=\"false\" data-raw-source=\"#toJson()\"></xref>."
returns:
description: "string representation of property bag."
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.azure.documentdb.JsonSerializable.toString(int)"
fullName: "com.microsoft.azure.documentdb.JsonSerializable.toString(int indentFactor)"
name: "toString(int indentFactor)"
nameWithType: "JsonSerializable.toString(int indentFactor)"
summary: "Gets formatted String representation of property bag."
deprecatedTag: "For proper conversion to json and inclusion of the default values use <xref uid=\"com.microsoft.azure.documentdb.JsonSerializable.toJson(com.microsoft.azure.documentdb.SerializationFormattingPolicy)\" data-throw-if-not-resolved=\"false\" data-raw-source=\"#toJson(SerializationFormattingPolicy)\"></xref>."
parameters:
- description: "formatting indentation factor."
name: "indentFactor"
type: "<xref href=\"int?alt=int&text=int\" data-throw-if-not-resolved=\"False\" />"
syntax: "</br>public String toString(int indentFactor)"
desc: "Gets formatted String representation of property bag."
hasDeprecatedTag: true
returns:
description: "formatted string representation of property bag."
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
type: "class"
desc: "Represents a base resource that can be serialized to JSON in the Azure Cosmos DB database service. Note on Serializable: this interface is implemented solely for the use with the CosmosDB Spark Connector. In RDD transformation, it is a requirement of the RDD item type to be Serializable so that they can be transferred among the work nodes by the default serializer. The Serializable is not intended to be used by the user of the Cosmos DB Java SDK. Avoid relying on the serialized string format as it can change in the future."
implements:
- "<xref href=\"java.io.Serializable?alt=java.io.Serializable&text=Serializable\" data-throw-if-not-resolved=\"False\" />"
metadata: {}
package: "com.microsoft.azure.documentdb"
artifact: com.microsoft.azure:azure-documentdb:2.4.7