All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.documentdb.Index 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 the index of a collection in the Azure Cosmos DB database service.
 */
public abstract class Index extends JsonSerializable {

    /**
     * Constructor.
     *
     * @param indexKind the kind of the index
     */
    protected Index(IndexKind indexKind) {
        super();
        this.setKind(indexKind);
    }

    /**
     * Constructor.
     *
     * @param jsonString the json string that represents the index.
     * @param indexKind the kind of the index
     */
    protected Index(String jsonString, IndexKind indexKind) {
        super(jsonString);
        this.setKind(indexKind);
    }

    /**
     * Constructor.
     *
     * @param jsonObject the json object that represents the index.
     * @param indexKind the kind of the index
     */
    protected Index(JSONObject jsonObject, IndexKind indexKind) {
        super(jsonObject);
        this.setKind(indexKind);
    }

    /**
     * Returns an instance of RangeIndex class with specified DataType.
     * 

* Here is an example to create RangeIndex instance passing in the DataType: *

     * {@code
     *
     * RangeIndex rangeIndex = Index.Range(DataType.Number);
     *
     * }
     * 
* * @param dataType the data type. * @return an instance of RangeIndex type. */ public static RangeIndex Range(DataType dataType) { return new RangeIndex(dataType); } /** * Returns an instance of RangeIndex class with specified DataType and precision. *

* Here is an example to create RangeIndex instance passing in the DataType and precision: *

     * {@code
     *
     * RangeIndex rangeIndex = Index.Range(DataType.Number, -1);
     *
     * }
     * 
* * @param dataType specifies the target data type for the index path specification. * @param precision specifies the precision to be used for the data type associated with this index. * @return an instance of RangeIndex type. */ public static RangeIndex Range(DataType dataType, int precision) { return new RangeIndex(dataType, precision); } /** * Returns an instance of HashIndex class with specified DataType. *

* Here is an example to create HashIndex instance passing in the DataType: *

     * {@code
     *
     * HashIndex hashIndex = Index.Hash(DataType.String);
     * }
     * 
* * @param dataType specifies the target data type for the index path specification. * @return an instance of HashIndex type. */ public static HashIndex Hash(DataType dataType) { return new HashIndex(dataType); } /** * Returns an instance of HashIndex class with specified DataType and precision. *

* Here is an example to create HashIndex instance passing in the DataType and precision: *

* HashIndex hashIndex = Index.Hash(DataType.String, 3); * * @param dataType specifies the target data type for the index path specification. * @param precision specifies the precision to be used for the data type associated with this index. * @return an instance of HashIndex type. */ public static HashIndex Hash(DataType dataType, int precision) { return new HashIndex(dataType, precision); } /** * Returns an instance of SpatialIndex class with specified DataType. *

* Here is an example to create SpatialIndex instance passing in the DataType: *

* SpatialIndex spatialIndex = Index.Spatial(DataType.Point); * * @param dataType specifies the target data type for the index path specification. * @return an instance of SpatialIndex type. */ public static SpatialIndex Spatial(DataType dataType) { return new SpatialIndex(dataType); } /** * Gets index kind. * * @return the index kind. */ public IndexKind getKind() { IndexKind result = null; try { result = IndexKind.valueOf(WordUtils.capitalize(super.getString(Constants.Properties.INDEX_KIND))); } catch (IllegalArgumentException e) { this.getLogger().warn("Invalid index kind value %s.", super.getString(Constants.Properties.INDEX_KIND)); } return result; } /** * Sets index kind. * * @param indexKind the index kind. */ private void setKind(IndexKind indexKind) { super.set(Constants.Properties.INDEX_KIND, indexKind.name()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy