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

com.azure.cosmos.implementation.query.ItemType Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.61.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.query;

public enum ItemType {
    NoValue(0x0), Null(0x1), Boolean(0x2), Number(0x4), String(0x5), ArrayNode(0x6), ObjectNode(0x7);

    private final int val;

    ItemType(int val) {
        this.val = val;
    }

    public int getVal() {
        return this.val;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy