com.microsoft.azure.documentdb.SpatialIndex Maven / Gradle / Ivy
package com.microsoft.azure.documentdb;
import org.apache.commons.lang3.text.WordUtils;
import org.json.JSONObject;
import com.microsoft.azure.documentdb.internal.Constants;
/**
* Represents a spatial index in the Azure Cosmos DB database service.
*/
public final class SpatialIndex extends Index {
/**
* Initializes a new instance of the SpatialIndex class.
*
* Here is an example to instantiate SpatialIndex class passing in the DataType
*
* {@code
*
* SpatialIndex spatialIndex = new SpatialIndex(DataType.Point);
*
* }
*
*
* @param dataType specifies the target data type for the index path specification.
*/
public SpatialIndex(DataType dataType) {
super(IndexKind.Spatial);
this.setDataType(dataType);
}
/**
* Initializes a new instance of the SpatialIndex class.
*
* @param jsonString the json string that represents the index.
*/
public SpatialIndex(String jsonString) {
super(jsonString, IndexKind.Spatial);
if (this.getDataType() == null) {
throw new IllegalArgumentException("The jsonString doesn't contain a valid 'dataType'.");
}
}
/**
* Initializes a new instance of the SpatialIndex class.
*
* @param jsonObject the json object that represents the index.
*/
public SpatialIndex(JSONObject jsonObject) {
super(jsonObject, IndexKind.Spatial);
if (this.getDataType() == null) {
throw new IllegalArgumentException("The jsonObject doesn't contain a valid 'dataType'.");
}
}
/**
* Gets data type.
*
* @return the data type.
*/
public DataType getDataType() {
DataType result = null;
try {
result = DataType.valueOf(WordUtils.capitalize(super.getString(Constants.Properties.DATA_TYPE)));
} catch (IllegalArgumentException e) {
this.getLogger().warn("Invalid index dataType value {}.", super.getString(Constants.Properties.DATA_TYPE));
}
return result;
}
/**
* Sets data type.
*
* @param dataType the data type.
*/
public void setDataType(DataType dataType) {
super.set(Constants.Properties.DATA_TYPE, dataType.name());
}
}