com.microsoft.azure.documentdb.Undefined Maven / Gradle / Ivy
package com.microsoft.azure.documentdb;
/**
* Represents the 'Undefined' partition key in the Azure Cosmos DB database service.
*/
public class Undefined extends JsonSerializable {
private final static Undefined value = new Undefined();
/**
* Constructor. Create a new instance of the Undefined object.
*/
private Undefined() {
}
/**
* Returns the singleton value of Undefined.
*
* @return the Undefined value
*/
public static Undefined Value() {
return value;
}
/**
* Returns the string representation of Undfined.
*/
public String toString() {
return "{}";
}
}