ItemTypeHelper.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.query;

import com.azure.cosmos.implementation.Undefined;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;

public final class ItemTypeHelper {
    public static ItemType getOrderByItemType(Object obj) {
        if (obj == null) {
            return ItemType.Null;
        }

        if (obj instanceof Undefined) {
            return ItemType.NoValue;
        }

        if (obj instanceof Boolean) {
            return ItemType.Boolean;
        }

        if (obj instanceof Number) {
            return ItemType.Number;
        }

        if (obj instanceof String) {
            return ItemType.String;
        }

        if (obj instanceof ArrayNode) {
            return ItemType.ArrayNode;
        }

        if (obj instanceof ObjectNode) {
            return ItemType.ObjectNode;
        }

        throw new IllegalArgumentException(String.format("Unexpected type: %s", obj.getClass().toString()));
    }
}